https://github.com/socketstream/ss-generator
The app generator for SocketStream
https://github.com/socketstream/ss-generator
Last synced: 4 months ago
JSON representation
The app generator for SocketStream
- Host: GitHub
- URL: https://github.com/socketstream/ss-generator
- Owner: socketstream
- License: mit
- Created: 2015-04-09T21:34:40.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-02T20:24:29.000Z (over 10 years ago)
- Last Synced: 2025-11-27T10:45:41.495Z (6 months ago)
- Language: JavaScript
- Size: 297 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ss-generator
The app generator for SocketStream
[](https://travis-ci.org/socketstream/ss-generator)
[](https://coveralls.io/r/socketstream/ss-generator?branch=master)
[](https://codeclimate.com/github/socketstream/ss-generator)
[](https://www.codacy.com/app/paulbjensen/ss-generator)
Summary
---
ss-generator is the CLI component of the SocketStream web framework. It has been extracted out of the framework so that it can be used in a Yeoman generator, as well as to help SocketStream's codebase become more modular.
Installation
---
It is primarily for use in the SocketSteam module, but you can install it with npm:
npm install ss-generator
Usage
---
If you then wish to use it programmatically, run the following code:
```javascript
var ssGenerator = require('ss-generator');
ssGenerator.process({args: ['new ', 'my_ss_app']}, function () {
console.log('app created');
});
```
Test
---
npm test
License
---
MIT Licence. See [License](https://github.com/socketstream/ss-generator/blob/master/LICENSE) For more details.