Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rrrnld/startify
Quickly get started with frontend web development using browserify. No gulp, just npm scripts. Comes with a development server.
https://github.com/rrrnld/startify
Last synced: about 1 month ago
JSON representation
Quickly get started with frontend web development using browserify. No gulp, just npm scripts. Comes with a development server.
- Host: GitHub
- URL: https://github.com/rrrnld/startify
- Owner: rrrnld
- Created: 2016-09-17T13:15:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-20T15:13:15.000Z (over 8 years ago)
- Last Synced: 2024-11-06T06:42:44.694Z (3 months ago)
- Language: HTML
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀
My minimalistic starter skeleton for frontend development. Comes with ES2015 via
`babel`, `browserify` and a live-reloading dev server thanks to `beefy`. Easily
extendible for use with React or other more fully-fledged solutions, no big
`gulp` config files. Also configures `standard` to use `babel-eslint` as the
parser, which is useful for linting some syntax extensions (e.g. async / await).## Preconfigured commands
```
# Start a live-reload server that compiles scripts/index.js and provides it temporarily as bundle.js
$ npm run dev
# Compile and mangle scripts/index.js, spit out bundle.js
$ npm run bundle
```