Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/umayr/vanilla
vanilla javascript sandbox with webpack, eslint, sass and babel.
https://github.com/umayr/vanilla
babel eslint javascript sass vanilla webpack
Last synced: 9 days ago
JSON representation
vanilla javascript sandbox with webpack, eslint, sass and babel.
- Host: GitHub
- URL: https://github.com/umayr/vanilla
- Owner: umayr
- License: mit
- Created: 2018-03-21T20:31:15.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-21T20:43:53.000Z (almost 7 years ago)
- Last Synced: 2024-11-07T03:48:22.518Z (about 2 months ago)
- Topics: babel, eslint, javascript, sass, vanilla, webpack
- Language: JavaScript
- Size: 70.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vanilla
> vanilla javascript sandbox with webpack, eslint, sass and babel.Sometimes you need to test a few things in browser, or write a web app without any frameworks or libraries (if you
prefer), this could be a starting point.It comes with a minimal webpack configuration with support for babel, eslint and sass.
To get it running:
```bash
# clone the repository
λ git clone [email protected]:umayr/vanilla.git
# change current directory
λ cd vanilla
# remove .git folder (in case you don't want to this repository's commits)
λ rm -rf .git
# install dependencies
λ yarn install
```There are only two project commands that could be executed with either `yarn` or `npm`:
```bash
# build - creates a new webpack build
webpack --mode=production
# start - runs the webpack dev server with HMR
webpack-dev-server --inline --progress --mode=development
```And that's it.