An open API service indexing awesome lists of open source software.

https://github.com/marvin-js/boilerplate-marvin-plugin

:satellite: A boilerplate to create a marvin plugin
https://github.com/marvin-js/boilerplate-marvin-plugin

automation javascript marvin node plugin script workflow

Last synced: 2 months ago
JSON representation

:satellite: A boilerplate to create a marvin plugin

Awesome Lists containing this project

README

          

# Boilerplate Marvin Plugin

A boirleplate to create a plugin for [Marvin](https://github.com/marvin-js/marvin).

Create a plugin is very much simple. It is necessary understand [how the syntax works](https://github.com/marvin-js/marvin/blob/master/docs/how-is-syntax.md).

Example of plugin:

```javascript
module.exports = function (opts, params1, params2) {
//... make something with the params & options
}
```

The plugin can return a Object/Promise.

## Recommendation for name of package

Marvin searching the plugins with prefix `marvin-plugin-`.

**Example:**

```
marvin-plugin-
```