All Projects → transitive-bullshit → react-fake-tweet

transitive-bullshit / react-fake-tweet

Licence: other
React renderer for tweets.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to react-fake-tweet

Fake Apache Log Generator
Generate a boatload of Fake Apache Log files very quickly
Stars: ✭ 207 (+527.27%)
Mutual labels:  fake
Http Fake Backend
Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 253 (+666.67%)
Mutual labels:  fake
EasyFake
🤹‍♀️ Fake data generation in Swift
Stars: ✭ 54 (+63.64%)
Mutual labels:  fake
Fake Xrm Easy
The testing framework for Dynamics CRM and Dynamics 365 which runs on an In-Memory context and deals with mocks or fakes for you
Stars: ✭ 216 (+554.55%)
Mutual labels:  fake
Fake Useragent
A wide variety of random useragents
Stars: ✭ 253 (+666.67%)
Mutual labels:  fake
Fake-Stream
Allows infinite streaming of a video as webcam output for different applications like Zoom, Skype etc.
Stars: ✭ 15 (-54.55%)
Mutual labels:  fake
Wmi Static Spoofer
Spoofing the Windows 10 HDD/diskdrive serialnumber from kernel without hooking
Stars: ✭ 199 (+503.03%)
Mutual labels:  fake
stweet
Advanced python library to scrap Twitter (tweets, users) from unofficial API
Stars: ✭ 287 (+769.7%)
Mutual labels:  tweet
Log Fake
A drop in fake logger for testing with the Laravel framework.
Stars: ✭ 254 (+669.7%)
Mutual labels:  fake
webvalve
Betterment's framework for locally developing and testing service-oriented apps in isolation with WebMock and Sinatra-based fakes
Stars: ✭ 111 (+236.36%)
Mutual labels:  fake
Pikarma
📡🍓🍍 Detects wireless network attacks performed by KARMA module (fake AP). Starts deauthentication attack (for fake access points)
Stars: ✭ 222 (+572.73%)
Mutual labels:  fake
Fakerpress
A WordPress plugin that implements an easy way to create fake data inside WordPress.
Stars: ✭ 250 (+657.58%)
Mutual labels:  fake
tweet-fancy
🚀 Tweet with bold, italics and strikethough text
Stars: ✭ 42 (+27.27%)
Mutual labels:  tweet
Joal
An open source command line RatioMaster with an optional WebUI.
Stars: ✭ 213 (+545.45%)
Mutual labels:  fake
FakeSms
一个短信作弊器,可以在没有接受到短信时在收件箱中伪造短信
Stars: ✭ 28 (-15.15%)
Mutual labels:  fake
Ts Auto Mock
Typescript transformer to unlock automatic mock creation for interfaces and classes
Stars: ✭ 204 (+518.18%)
Mutual labels:  fake
bs-faker
Faker.js bindings for BuckleScript in Reason
Stars: ✭ 18 (-45.45%)
Mutual labels:  fake
JustTweet
Simple tweet button for Google Chrome
Stars: ✭ 20 (-39.39%)
Mutual labels:  tweet
FakePlayer
Specter but targeting PocketMine-MP API 4.0.0
Stars: ✭ 46 (+39.39%)
Mutual labels:  fake
fakesudo
sudo almost as fake as your ma
Stars: ✭ 15 (-54.55%)
Mutual labels:  fake

react-fake-tweet

React renderer for tweets.

NPM JavaScript Style Guide

Example fake tweet

This project is a fork of fake-tweet by Lluís Camino with the following improvements:

  • Uses CSS modules to not pollute CSS namespace
  • Allows you to override className, style, etc on root element
  • Smaller bundle size via microbundle
  • Fixes some style issues
  • Used in production by twitter-search.io

Install

npm install --save react-fake-tweet

Usage

import React, { Component } from 'react'

import { Tweet } from 'react-fake-tweet'
import 'react-fake-tweet/dist/index.css'

const tweet = {
  /* ... */
}

class Example extends Component {
  render() {
    return (
      <Tweet
        config={{
          user: {
            avatar: tweet.user.profile_image_url,
            nickname: tweet.user.screen_name,
            name: tweet.user.name
          },
          text: tweet.text,
          date: Date.now(),
          retweets: tweet.retweet_count,
          likes: tweet.favorite_count
        }}
      />
    )
  }
}

Related

  • react-tweet-embed - Embeds a tweet using Twitter's official embedding SDK.
    • Significantly more accurate and robust
    • Slightly more heavy-weight
    • No way that I'm aware of to fake the resulting tweet's content

License

MIT © transitive-bullshit

Support my OSS work by following me on twitter twitter

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].