render-jsx
JS starter project
- use this template
- clone your repo and
cd
to it npm i
npm start
for development
- entry file is in
src/index.jsx
- dev version is served on
localhost:3000
by default
npm run build
for building your web app / bundle and ship it
- built files are in
dist/
👉 Don't forget to checkout the docs.
Babel
is used for transpilation.@babel/plugin-transform-react-jsx
is used for custom JSX syntax.- can be configured in
.babelrc
webpack
is used for building & dev.- configuration in
webpack.common.js
- dev specific config in
webpack.dev.js
- prod specific config in
webpack.prod.js
- configuration in