https://github.com/itsthatguy/node-webkit-devkit
https://github.com/itsthatguy/node-webkit-devkit
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/itsthatguy/node-webkit-devkit
- Owner: itsthatguy
- License: mit
- Created: 2014-08-11T15:58:19.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-11T16:37:25.000Z (almost 11 years ago)
- Last Synced: 2025-01-16T16:46:32.249Z (6 months ago)
- Language: JavaScript
- Size: 152 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-webkit-devkit
==========## Developing
### Generating Assets:
While working on the project, you will need to generate the assets from source. Run the following command to rebuild the assets as they change.
```bash
$ gulp watch
```NOTE: Edit the files in the `assets/` directory. Everything in the `app/` directory is moved there automatically with gulp, and is overwritten anytime a file in `src/` changes.
### Running the app:
This thing uses node-webkit. There are a couple scripts that are used to do a number of things when you start the app.
1. Ensure app dependencies are up to date
2. Ensure project dependencies are up to date
3. Start the appOn your end, just simply type the following command, and let the scripts do their magic.
```bash
$ npm start
```