generator-wean-easy
v1.1.0
Published
Yeoman generator for an NWJS project (formerly Node WebKit) with AngularJS, Bootstrap, Grunt, Bower. Easy installation feature : no automatic final dependencies installation (better when you have some sudo/root issues like for Mac OS X users). Also includ
Downloads
31
Maintainers
Readme
generator-wean-easy
Yeoman Generator for an NWJS full featured project (formerly Node Webkit) Features : NWJS, AngularJS, BootStrap, Grunt, Bower, NodeJS, Express, EditorConfig, EJS (embedded javascript), JSHint, Travis CI, Mocha, etc.
It basically generates a NWJS + MEAN project.
NB IMPORTANT : this generator does not install dependencies automatically at the end of the project generation. It is much better when you have some sudo/root issues like for Mac OS X users. Instructions are provided to easily help complete the process (including specific instructions if needing sudo commands).
NB: WEAN is coined name for Webkit Express Angular Node just like MEAN by Arvind Ravulavaru .
Requirements
Installation
To install the generator:
npm install -g generator-wean-easy
You need to have node, grunt, yo and bower installed globally before running the command. Therefore download node from the link and run:
npm install -g yo grunt bower
Scaffold an application
Scaffolding a WEAN application works like every other Yeoman generator. If you have the generator installed, cd to an empty project directory and run:
yo wean-ready-to-install
Interact with Yeoman to create the application.
Install the dependencies manually after the yo project installation
The commands are :
npm install
bower install
NB: users having issues with sudo/root like MAC OS X users will probably need to run :
sudo npm install
sudo bower install --allow-root
Running
The application will scaffold completely while generating but there are chances that npm and bower installation might not be successful, probably because of unstable internet connection as npm needs to download NW.js which is > 30mb therefore the application will not run.
If such case occurs, run npm install
and bower install
to complete the installation. For users with sudo/root issues like Mac OS X users : sudo npm install
and sudo bower install --allow-root
To run the NW application:
grunt
or grunt run
Building
Another amazing feature of this generator is that you can build to all mac, windows, and linux using a simple command. If you think you app is ready for consumption, run:
grunt build:{platform}
The platform placeholder can be win, mac, linux and all. Choose all to build for all the platforms. If the parameters are not specified, it builds for the current OS.
eg:
grunt build
grunt build:mac
grunt build:win
grunt build:linux
grunt build:all
How about Icons
Yeah. Icons. Icons are very easy to setup for mac and windows. Copy the .icns
and .ico
version of your icon named app-icon
to the root of the project before building and that is all.
Contributing
I will really appreciate any contributions to this project (no matter how little). Please use the guidelines
Thanks
- Christian Nwamba (Inspiration)
- Arvind Ravulavaru
- elmuchaco
License
The MIT License
Copyright (c) 2015, FranckVE
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.