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
- Host: GitHub
- URL: https://github.com/codenameyau/tyrian-city
- Owner: codenameyau
- License: apache-2.0
- Created: 2015-08-03T03:22:05.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-01-12T14:11:25.000Z (over 10 years ago)
- Last Synced: 2025-04-06T04:22:19.899Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```