An open API service indexing awesome lists of open source software.

https://github.com/codenameyau/tyrian-city

:construction: Procedural city with ES6
https://github.com/codenameyau/tyrian-city

Last synced: 6 months ago
JSON representation

:construction: Procedural city with ES6

Awesome Lists containing this project

README

          

# tyrian-city

Procedural city with ES6

## Development

To get started, you'll need the following global packages:
```
sudo npm install -g mocha babel gulp
```

Then install the local project packages:
```
npm install
```

You can run tests with:
```
mocha test
```

### Gulp
Gulp is used for the following:

- Compiling ES6 to ES5 with Babel.
- Bundling the application with browserify.
- Concatenation and minification.
- Watching for code changes.

Generate a build in `public/build` with:

```
gulp clean && gulp build
```