maduranga20's Stars
immutable-js/immutable-js
Immutable persistent data collections for Javascript which increase efficiency and simplicity.
vinnyoodles/reddit-heatmap
Find your Reddit consumption
ziad-saab/node-express-reddit-clone
Build a Node, Express and MySQL-based clone of Reddit for DecodeMTL web development bootcamp
toolbox-team/reddit-moderator-toolbox
Moderator toolbox for reddit extension development.
ghoshnirmalya/reddit-clone
:arrow_up: :arrow_down: This is a sample application for building a clone of Reddit using React and Firebase
dynastic/place
An open-source recreation of Reddit's /r/place.
lukstei/reddit-hyped-stocks
A web application to explore currently hyped stocks on Reddit
farnots/RedditToMarkdown
Export Reddit Post and comments to a markdown format
placeAtlas/atlas-2023
The 2023 r/place Atlas is a project aiming to chart all the artworks created during the r/place April Fools event on Reddit in 2023.
kenancibooglu/Reddit-Client-Project
A project created using React, React-Router-Dom, Material UI, Material UI Icons and ProSideBar. This project is a portfolio project given by codeAcademy.
reisblucas/neural.fy
Spotify Clone UI + Functionalities - Based in React and mostly in Class Components with Redux to manage Store and avoid prop drilling.
isabelanery/trybetunes
A spotify-like application using class components and API requests.
hazeltonbw/jamming
Spotify Song Playlist Creator using React Class Components
RahimGuerfi/FilmFInder
Codecademy Film Finder Project
ecole-du-web/curtain-menu
source code youtube video
spotify/web-api-examples
Basic examples to authenticate and fetch data using the Spotify Web API
awicks44/JavaScript-SpotifyAPI
This is a sample project showing how to call Spotify's API using vanilla JS
dom-the-dev/spotify-with-react
React JS application which integrates the Spotify.
carmellemillar/carmelle-codes-react-app
Code from Carmelle Codes. Thanks for supporting the channel!
awicks44/Spotify-React
codzsword/price-range-slider
thisisabhishek/hello-reactjs
This repo holds all the files, code, and projects covered in the ReactJS course
chaoocharles/add-remove-form-field
Dynamically add or remove a form field in React
ndpniraj/live-search-react
CodeCompleteYT/react-search-bar
WebDevSimplified/spotify-clone
RahimGuerfi/Jammming
Codecademy Jammming Project
kamalheydari/react-store-fake-api
The website prioritizes user convenience with search, filter, and sort functions for personalized product discovery. Its structured layout includes a home, product, single product, about, and cart pages. To optimize performance and enhance user experience, suspense is utilized.
cichaczem/react-workshop
Awaiskazmi154/Modern-Redux-with-RTK
This simple project demonstrates the use of modern redux using redux-toolkit which is super easy and understandable. RTK uses Immer.js library by allowing us to make mutable state updates and it does the necessary immutable state updates under the hood through its "provide" function. Every specific state update required in the app is done by slicing that part or logic of the state which has its own reducers, actions etc.. RTK does all the work for us such as defining action creators, action types, etc. automatically using this "slice" pattern. Moreover, it also simplifies the asynchronous state updates using "createAsyncThunk" API. RTK also provides a "configureStore()" API which gives simplified configuration options for store and automatically combines the slice reducers for you. It also has redux-thunk by default, and also allows the use of the Redux DevTools Extension.