Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zafar-saleem/hut
A boilerplate code that allows to kick start ES6+ syntax javascript projects.
https://github.com/zafar-saleem/hut
babel boilerplate es6 es6-javascript javascript webpack
Last synced: about 4 hours ago
JSON representation
A boilerplate code that allows to kick start ES6+ syntax javascript projects.
- Host: GitHub
- URL: https://github.com/zafar-saleem/hut
- Owner: zafar-saleem
- Created: 2016-11-05T21:10:42.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T17:21:10.000Z (almost 2 years ago)
- Last Synced: 2024-04-15T11:38:22.140Z (7 months ago)
- Topics: babel, boilerplate, es6, es6-javascript, javascript, webpack
- Language: JavaScript
- Homepage: https://github.com/zafar-saleem/hut
- Size: 1.36 MB
- Stars: 8
- Watchers: 3
- Forks: 13
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Hut
Hut is a boilerplate for ES6+ syntax. It comes with babel that transpiles ES6+ to ES5 and webpack as build tool.
### Requirements
Hut needs `node` and `npm` to be installed on your machine.
### Usage
1. Clone this repository.
2. Run `yarn OR npm install` command to download and install all Webpack dependencies.
3. Run `yarn serve` to run the server on `http://localhost:8080`. This command will run the project in development mode.
4. To build the project for production run `yarn build:prod OR npm run build:prod` command. This will build the app for production and put all the files in `/dist` folder.
5. To run production ready version on local environment, run `yarn serve:prod OR npm run serve:prod`. Then go to `http://localhost:8080`.