slush-js
v2.3.0
Published
A Slush generator for clientside and serverside JS projects
Downloads
38
Readme
slush-js
A Slush scaffolder that generates JS projects for you (clientside, serverside, both clientside and serverside, or standalone lib).
The generated project has live reloading on code changes (for both clientside and serverside, as applicable). The live reloading has been tweaked to be very fast to maximise productivity.
The stack is chosen to use as standard, vanilla technologies as possible. You write all your JS as normal JS (with ES6+ support). You write all your CSS as normal CSS (with CSS4 support). You also get all the conveniences of a modern stack with the productivity of a build system.
The stack uses npm scripts to drive the build targets using the CLI of several packages.
Stack
- npm script for build tasks
- ESLint for linting JS
- Stylelint for linting CSS
- Mocha & Chai for testing
- Client (or standalone lib)
- JS
- Webpack for bundling with CommonJS
require()
support and ESimport
support - Babel for transpiling and polyfilling ES6+
- Browsersync
- Support for live reloading the UI when the code is changed
- Support for testing on multiple browsers or multiple devices simultaneously (config UI at http://localhost:3002 when running
npm run watch
)
- UglifyJS to compress built JS
- React (optional)
- Webpack for bundling with CommonJS
- CSS
- PostCSS to add features to CSS
postcss-import
to allow@import
s to be bundledpostcss-url
to allow files referenced byurl()
(images, fonts, etc.) to be bundled in CSS for performancepostcss-cssnext
to allow for future CSS features (things that LESS and SASS introduced) to be used and to allow for CSS to be automatically patched to support older browserscssnano
to compress built CSS- Normalize.css to make the default stylesheet more consistent across browsers
- A minimalistic base stylesheet that can be configured with CSS variables (taken from Factoid; may make sense to make this a reusable npm module)
- JS
- Server
Notes
- Don't use ES2015
import
if you want to share code between the server and the client. You can't useimport
in Node.js. Node 8 supportimport
. Once Node 8 and npm 5 are stable, it makes sense to useimport
. - Debug Mocha tests or server code with
node --inspect --debug-brk
ormocha --inspect --debug-brk
--inspect
to start the debugger UI--debug-brk
to break on the first line so you have time to open the debugger
- Do not use Webpack to
import
orrequire()
your CSS from inside your JS. Do not use Webpack to bundle CSS into your JS bundles. If you do that, you can no longer share code between the client and the server.
Instructions
- Install
slush
:npm install -g slush
- Install
slush-js
:npm install -g slush-js
- Scaffold :
slush js
Scripts
The generated project uses npm scripts to drive all of the build process so that nothing needs to be installed globally with npm. (Only slush
has to be globally installed, and only when first generating the project.) The targets are described in the generated README.md file.