You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
523 B
25 lines
523 B
7 years ago
|
# Docs
|
||
|
|
||
|
## Getting started
|
||
|
|
||
|
WeTTy is event driven. To Spawn a new server call `wetty.start()` with no
|
||
|
arguments.
|
||
|
|
||
|
```javascript
|
||
|
const wetty = require('wetty.js');
|
||
|
|
||
|
wetty
|
||
|
.on('exit', ({ code, msg }) => {
|
||
|
console.log(`Exit with code: ${code} ${msg}`);
|
||
|
})
|
||
|
.on('spawn', msg => console.log(msg));
|
||
|
wetty.start(/* server settings, see Options */).then(() => {
|
||
|
console.log('server running');
|
||
|
/* code you want to execute */
|
||
|
});
|
||
|
```
|
||
|
|
||
|
## API
|
||
|
|
||
|
For WeTTy options and event details please refer to the [api docs](./api.md)
|