Giter Site home page Giter Site logo

twitter-clone-reactjs's Introduction

Twitter Clone using REACTJS

Twitter clone build using ReactJS and Backend used is Google Firebase.

Learned

  • Redux implementation
  • Authorization using Firebase
  • Login, Logout and LocalStorage with ReactJS.

Stacks

  • ReactJS
  • Redux
  • Google Firebase (Backend)

Database Firebase RealTime Database

  • For storing tweets

Extras

  • Implementation of redux

What's Inside

  • ReactJS web app.
  • Login SignUp with firebase authentication.
  • Tweet functionality
  • LocalStorage for Storing user information like name,phone,username etc.

Problems in this project Several points are there where modification and changes required. Kindly let me know if notice something. Suggestions are welcome. Kindly mail me at - [email protected]

twitter-clone-reactjs's People

Contributors

divyancod avatar

Watchers

 avatar

twitter-clone-reactjs's Issues

Tweet time in single tweet card

function timeDifference(date1,date2) {
var difference = date1.getTime() - date2.getTime();

var daysDifference = Math.floor(difference/1000/60/60/24);
difference -= daysDifference*1000*60*60*24

var hoursDifference = Math.floor(difference/1000/60/60);
difference -= hoursDifference*1000*60*60

var minutesDifference = Math.floor(difference/1000/60);
difference -= minutesDifference*1000*60

var secondsDifference = Math.floor(difference/1000);

console.log('difference = ' + 
  daysDifference + ' day/s ' + 
  hoursDifference + ' hour/s ' + 
  minutesDifference + ' minute/s ' + 
  secondsDifference + ' second/s ');

}

functionality needs to be changed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.