Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/janumedia/react-basic-with-minimal-setup
React basic with minimal setup without using 'create-react-app'
https://github.com/janumedia/react-basic-with-minimal-setup
babeljs es2015 es6 jsx pure-function pure-function-compo reactjs scss webpack
Last synced: 25 days ago
JSON representation
React basic with minimal setup without using 'create-react-app'
- Host: GitHub
- URL: https://github.com/janumedia/react-basic-with-minimal-setup
- Owner: janumedia
- Created: 2018-07-21T10:44:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T03:19:58.000Z (over 1 year ago)
- Last Synced: 2024-09-29T06:21:56.338Z (about 1 month ago)
- Topics: babeljs, es2015, es6, jsx, pure-function, pure-function-compo, reactjs, scss, webpack
- Language: JavaScript
- Homepage:
- Size: 630 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Basic with Minimal Setup
This repo provide an example to start writing React single page website without using `create-react-app`
# Depedencies
This basic setup is using `webpack-dev-server` as dev sever during development process.
To ensure that we can use ES6 we using `babel-preset-es2015` and `babel-preset-react` to process JSX as React features along ES6.
Some optimization using `shouldComponentUpdate` also implemented on codes sample. As alternative of extends class to `React.PureComponent`