A NodeJS Utility to generate Boilerplate HTML, CSS and JS Files for a Vanilla JS Project.
When you have just started learning web development and you create simple HTML, CSS and Vanilla JS projects to get the hang of it, Bplate creates these HTML, CSS and JS files for you in a folder of the name you provided with the command or inside current directory if you don't specify command.
You don't have to create and link these files again and again. Just run bplate and start creating your next vanilla js project.
//Download the Repository and run this command
npm install -g path-to-root-of-repository
//Example(If you download repository at path C:\tools\)
npm install -g C:\tools\bplate
To create HTML, CSS and JS files in a folder named 'some_folder'
bplate some_folder
To create HTML, CSS and JS files in current folder
bplate
Distributed under the MIT license.
- Fork it (https://github.com/iamrajatg/bplate/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request