generator-play-ideia
v2.0.1
Published
A generator for Yeoman when you need to quickly play web application with an idea.
Downloads
4
Readme
generator-play-ideia
A generator for Yeoman when you need to quickly play web application with an idea.
What's Yeoman (yo)?
Yeoman helps you kickstart new projects, prescribing best practices and tools to help you stay productive.
Installing yo
npm install -g yo
Installing generator-play-ideia
To scaffold a web application, you'll need to install the generator:
npm install -g generator-play-ideia
Make a new directory, and cd into it:
mkdir my-new-project && cd $_
Finally, initiate the generator:
yo play-ideia
Layout
- normalize-css: 8.0.1
- jquery: 3.6.0
- bootstrap: 5.2.0
bower_components/
├── bootstrap/
├── jquery/
├── normalize-css/
app/
├── index.html
├── css/
│ ├── app.css
├── img/
│ ├── yeoman-logo.png
└── js/
├── app.js
The bower dependencies are installed in another directory.
How This Generator Works
After finishing the implementation of your application, simply run the following command to deploy your project.
grunt
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Test your changes to the best of your ability.
- Update the documentation to reflect your changes if they add or changes current functionality.
- Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request