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
- Host: GitHub
- URL: https://github.com/marvin-js/boilerplate-marvin-plugin
- Owner: marvin-js
- Created: 2018-03-15T12:52:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-19T23:40:08.000Z (over 8 years ago)
- Last Synced: 2025-05-20T02:50:41.090Z (about 1 year ago)
- Topics: automation, javascript, marvin, node, plugin, script, workflow
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-
```