Home

Awesome

Frontend Hot StarterKit

Frontend app with hot reload / React / cssnext.



Requirements

Install dependencies

$ npm install

Build the app for production

$ npm run build

Start app & watch changes

$ npm run server

Start tests & watch changes

$ npm run server-test

Note: you can run both app & test server at the same time ;)

Update sources

Some packages usages might change so you should run npm prune & npm install often. A common way to update is by doing

$ git pull
$ npm prune
$ npm install

Note: Unix user can just link the git-hooks/post-merge:

Enable git hooks (unix only :/)

$ git-hooks/create-hook-symlinks

post-merge (≃ npm install)

This hook will npm prune && npm install each time you git pull something if the package.json has been modified.

pre-commit (≃ npm test)

This hook will just ensure you will commit something not broken bye pruning npm packages not in the package.json & eventually reinstall missings/not correctly removed packages. Then it will try a production build.


Languages & tools

JavaScript / JSX

CSS

Development tools


Start a similar project

Create a directory with a package.json with this content

{
  "private": true,
  "name": "my-project",
  "version": "0.0.0",
  "scripts": {
    "start": "npm run server",
    "jscs": "jsxcs .",
    "eslint": "eslint . --ext=.js --ext=.jsx",
    "lint": "npm run eslint && npm run jscs",
    "pretest-ci": "npm run build-test",
    "test-ci": "testem ci",
    "pretest": "npm run lint",
    "test": "npm run build && npm run test-ci",
    "prebuild-test": "npm run lint",
    "build-test": "node scripts/build-test",
    "build": "webpack -p -c",
    "server": "node scripts/server",
    "server-test": "testem"
  },
  "dependencies": {

  },
  "devDependencies": {

  }
}

You should install versions of dependencies manually to start with up to date versions:

$ npm i -D 6to5 6to5-loader css-loader cssnext-loader yannickcr/eslint#deezer file-loader glob jscs jsx-loader jsxcs onchange opn react-hot-loader style-loader tape testem webpack webpack-dev-server
$ npm i -S react

You should get this README & delete the first & last section (the notice about this section & this section, yes). You can also copy everything except the package.json.