No longer maintained.
No longer maintained.
npm i
npm start
To call Electron's api, it is necessary to use window.require because, browserify rewrites require statement.
ex)
var remote = window.require( 'remote' );
Run
npm run refactorto refactor the code in accordance to jscs preset specified in the
.jscsrcfile.
Run
npm run lintto run a linter through the codebase. The linter will check the codebase as specified in the configuration file named
.eslintrc. Fix all reported errors prior to committing code.
An example of a
.eslintrcfollows:
{ "ecmaFeatures": { "blockBindings": true, "jsx": true }, "rules": { "semi": 2 } }