0.4.0 • Published 7 years ago
create-javascript-app v0.4.0
CREATE JS APP
Need a super fast way to boostrap a modern Javascript app? Here it is.
This is a project bootstraped with create-react-app & Node.js to give you the perfect combination of client and server to help you build highly performant and scalable applications with the correct, essential pacakages.
This project is built with the following technologies
- React (react, react-dom, react-router)
- Redux (redux, react-redux, react-router-redux, redux-saga)
- Node.js (node, express, http, cors, compression, body-parser)
- Essentials (config, debug, babel, babel-cli)
Installation
npm install -g create-javascript-app
# or
yarn global add create-javascript-appUsage:
create-javascript-app my-crazy-appOR
create-javascript-app --n my-crazy-appOR
create-javascript-app --n "1945"Additional Usage Examples:
Specifying a target folder
create-javascript-app --n my-crazy-app --t my-crazy-apps-dirPerforming a yarn install for your new app:
create-javascript-app --n my-crazy-app --yn trueOptions
--nor--name- The name of your JS application. Defaults tomy-crazy-app.--targetor--t- Target folder for your application. Defaults to current directory.--ynor--yarn- Runs a yarn install to setup your app. Enable this flag to have your work done for you or you can do this manually.--dor--debug- Prints debug and verbose messages to the console--hor--help- Prints the list of options
Once your app has been setup, navigate to your app folder (either the current folder or the specified target folder) and follow the QUICKSTART.md file.