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

https://github.com/zodern/mup-plugin-boilerplate

Boilerplate for Meteor Up plugins
https://github.com/zodern/mup-plugin-boilerplate

Last synced: 8 months ago
JSON representation

Boilerplate for Meteor Up plugins

Awesome Lists containing this project

README

          

# Boilerplate for Meteor Up Plugins

Learn how to create plugins from the [Meteor Up docs](http://meteor-up.com/plugins.html#creating-a-plugin).

### Folders:

`src` This is the source for the plugin. You can use es6 in these files.

`src/assets` Place any scripts or templates used by nodemiral tasks here.

`lib` Files in this folder are generated by babel, and are used when running the plugin. They are ignored by git, but included when published on npm.

### Scripts

`npm run build` Generates the lib folder from the src folder

`npm run build:watch` Same as the `build` script, but will watch for files that change and regenerate them

### Getting Started

Run the commands:
```
git clone https://github.com/zodern/mup-plugin-boilerplate.git
cd
rm -rf .git
git init
```

Next, you will want to change name and description in package.json and `src/index`