Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/polarbirke/js-playground
A safe place to mess around with "shiny new hotness" like Yarn, Webpack 2, ES2015, etc.
https://github.com/polarbirke/js-playground
babel es2015 eslint rollup tape webpack yarn
Last synced: 3 months ago
JSON representation
A safe place to mess around with "shiny new hotness" like Yarn, Webpack 2, ES2015, etc.
- Host: GitHub
- URL: https://github.com/polarbirke/js-playground
- Owner: polarbirke
- Created: 2017-05-10T14:41:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-12T06:50:24.000Z (about 2 years ago)
- Last Synced: 2024-04-14T21:53:39.322Z (9 months ago)
- Topics: babel, es2015, eslint, rollup, tape, webpack, yarn
- Language: JavaScript
- Homepage:
- Size: 245 KB
- Stars: 4
- Watchers: 5
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A safe place to mess around with "shiny new hotness" like Yarn, Webpack 2, ES2015, etc.
## Install
Install and build the project and run it in a simple docker-container.
```sh
bash install.sh
```## Getting started
If you want to try out Yarn, you may need to install it first. Follow the instructions on https://yarnpkg.com/en/docs/install depending on your setup!
If you'd rather stay with `npm`, you can simply replace all "yarn …" commands with "npm …" commands.```sh
yarn install
yarn run build
```## Develop
### (re-)build bundled JS```sh
yarn run build
```### Run unit tests
```sh
yarn run test
```