Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webpack/template
[DEPRECATED] Create a new web app from a template.
https://github.com/webpack/template
Last synced: about 1 month ago
JSON representation
[DEPRECATED] Create a new web app from a template.
- Host: GitHub
- URL: https://github.com/webpack/template
- Owner: webpack
- Archived: true
- Created: 2012-09-13T07:18:57.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-11-26T16:26:01.000Z (almost 12 years ago)
- Last Synced: 2024-04-14T13:08:40.715Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 203 KB
- Stars: 10
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webpack/template
Scaffolding for webpack wep apps.
Features:
* Create web apps by scaffolding.
* Update scaffolded web app if the template updates.
* Include development server for just-in-time compiling (just edit the source and update your browser).
* Includes all webpack features: Just require any resource (css, less, coffee, png).
* Also supports a node.js Server. It is enhanced with enhanced-require, so you can use webpack features in node.
* Supports hot code replacement on server side.
* Install webpack-template-modules, which add some stuff to the template
* i. e. jQuery, bootstrap, etc.``` text
> npm install wpt -g> wpt create
appName: my-test-app
author: Your Name
...> cd my-test-app
> npm install
> wpt install webpack/jquery-wpt-module
Installing jquery wpt-module...
Done.> wpt enable nodeServer
Done.
...> dev-server
> publish
...> server
```