This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ npm run lint | |
> @ lint | |
> npm run lint:js && npm run lint:css | |
> @ lint:js | |
> eslint src tools | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm run test -- --reporter min --watch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* React Starter Kit (https://www.reactstarterkit.com/) | |
* | |
* Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. | |
* | |
* This source code is licensed under the MIT license found in the | |
* LICENSE.txt file in the root directory of this source tree. | |
*/ | |
/* eslint-env mocha */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mocha "src/**/*.test.js" --require test/setup.js --compilers js:babel-register |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Given the app name that you want as MyApp... | |
$ git clone -o react-starter-kit -b master --single-branch https://github.com/kriasoft/react-starter-kit.git MyApp | |
$ cd MyApp | |
$ git remote -v | |
react-starter-kit https://github.com/kriasoft/react-starter-kit.git (fetch) | |
react-starter-kit https://github.com/kriasoft/react-starter-kit.git (push) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hello-world-rsk (master)$ npm start | |
> @ start /work/stujo/hello-world-rsk | |
> babel-node tools/run start | |
Starting 'start'... | |
Starting 'clean'... | |
Finished 'clean' after 115 ms | |
Starting 'bound copy'... | |
build/package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"lint:js": "eslint src tools", | |
"lint:css": "stylelint \"src/**/*.{css,less,scss,sss}\"", | |
"lint": "npm run lint:js && npm run lint:css", | |
"test": "mocha \"src/**/*.test.js\" --require test/setup.js --compilers js:babel-register", | |
"test:watch": "npm run test -- --reporter min --watch", | |
"clean": "babel-node tools/run clean", | |
"copy": "babel-node tools/run copy", | |
"bundle": "babel-node tools/run bundle", | |
"build": "babel-node tools/run build", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ npm run | |
Lifecycle scripts included in : | |
test | |
mocha "src/**/*.test.js" --require test/setup.js --compilers js:babel-register | |
start | |
babel-node tools/run start | |
available via `npm run-script`: | |
lint:js | |
eslint src tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get the generator version number for our git commit message | |
$ npm -v generator-react-fullstack | |
# Exclude node_modules from git | |
$ echo "node_modules" > .gitignore | |
# Set up git | |
$ git init | |
# Add the files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Yeoman globally | |
$ npm install -g yo | |
# Install RSK Yeoman Generator globally | |
$ npm install -g generator-react-fullstack | |
# Make a project directory | |
$ mkdir hello-world-rsk | |
$ cd hello-world-rsk |