0.1.3 • Published 4 years ago

webapp_generator v0.1.3

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Web Application Generator

A node package for creating a simple web application template. This is particularly useful if you to don't want to include third parties libraries and frameworks. Thus, keeping your source code lightweight. It installs and sets up webpack for you.

Prerequisites

As long as you have basic knowledge of html, css (scss), and javascript, you're good to go! Also, you need to have Node and npm (or yarn) installed on your machine.

Getting Started

  1. Install the package globally by running:
$ npm i -g webapp_generator
  1. Navigate to your project directory or create a new one:
$ mkdir my_webapp_project
$ cd my_webapp_project
  1. Run the webapp_generator cli. Optionally, you can add project title.
$ webapp_generator [your-project-title]
  1. Verify that everything is up and running.
$ npm run dev

This should start a webpack-dev-server at localhost:8080.

Deployment

To deploy your project, run:

$ npm run build

Webpack, will generate a dist/ folder containing all your compressed source files and resources. Move this folder to your preferred hosting platform.

CONTRIBUTION

If you would like to contribute, feel free to send us a pull request.

Authors

  • Younss Ait Mou - Initial work - yaitmou

See also the list of contributors who participated in this project.

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE.md file for details