scarlet-init
Version:
Scarlet-init is a scaffolding tool used to automate Scarlet plugin creation.
35 lines (24 loc) • 724 B
Markdown
default
======================
> Awesome Scarlet Plugin
##Install
`npm install default`
## Getting Started
This plugin requires Scarlet `~0.5.11`
If you haven't used [Scarlet](https://github.com/scarletjs/scarlet) before, be sure to check out the [Documentation](https://github.com/scarletjs/scarlet). To use this plugin perform the following:
Install scarlet
```shell
npm install scarlet --save
```
Install plugin
```shell
npm install default --save
```
Once the plugin has been installed, you can use it in your application as follows:
```js
//load scarlet
var Scarlet = require('scarlet');
//Initialize scarlet with the plugin
var scarlet = new Scarlet('default');
var default = scarlet.plugins.default;
```