https://github.com/ecto/grease
Painless cross-platform JS application packager
https://github.com/ecto/grease
Last synced: about 1 year ago
JSON representation
Painless cross-platform JS application packager
- Host: GitHub
- URL: https://github.com/ecto/grease
- Owner: ecto
- Created: 2014-07-30T00:30:15.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-30T21:57:53.000Z (almost 12 years ago)
- Last Synced: 2025-02-06T06:32:43.146Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://grease.io
- Size: 180 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

[![NPM version][npm-image]][npm-url]
[![build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
Simple packaging for cross-platform Cordova and node-webkit applications.
## Installation
As a CLI:
````
npm install -g grease
````
As a module:
````
npm install --save grease
````
## Quick start
````
grease create foo
cd foo
grease run
````
For more information, just run
````
grease
````
for usage information.
## Usage as a module
````javascript
var grease = require('grease');
grease.run();
````
## Running tests
To run tests, clone the repository and run the following from inside the directory:
````
npm install
npm test
````
## License
````
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2014 Cam Pedersen
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
````
[npm-image]: https://img.shields.io/npm/v/grease.svg?style=flat
[npm-url]: https://npmjs.org/package/grease
[travis-image]: https://img.shields.io/travis/ecto/grease.svg?style=flat
[travis-url]: https://travis-ci.org/ecto/grease
[coveralls-image]: https://img.shields.io/coveralls/ecto/grease.svg?style=flat
[coveralls-url]: https://coveralls.io/r/ecto/grease?branch=master