Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 947 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 947 Bytes

render-jsx JS starter project

  1. use this template
  2. clone your repo and cd to it
  3. npm i
  4. npm start for development
  • entry file is in src/index.jsx
  • dev version is served on localhost:3000 by default
  1. npm run build for building your web app / bundle and ship it
  • built files are in dist/

👉 Don't forget to checkout the docs.


Stack

  • Babel is used for transpilation.
  • 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