https://github.com/pimatic/pimatic-plugin-template
A template for creating plugins
https://github.com/pimatic/pimatic-plugin-template
Last synced: 9 months ago
JSON representation
A template for creating plugins
- Host: GitHub
- URL: https://github.com/pimatic/pimatic-plugin-template
- Owner: pimatic
- License: gpl-2.0
- Created: 2014-01-09T06:53:42.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2019-06-06T10:35:02.000Z (about 7 years ago)
- Last Synced: 2025-09-10T19:56:21.933Z (11 months ago)
- Language: CoffeeScript
- Size: 86.9 KB
- Stars: 4
- Watchers: 1
- Forks: 56
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pimatic-plugin-template
=======================
See the [development guide](https://pimatic.teamemo.com/Development) for
details.
Some Tips:
### Adding package dependencies
* You can add other package dependencies by running `npm install something --save`. With the `--save`
option npm will auto add the installed dependency in your `package.json`
* You can always install all dependencies in the package.json with `npm install`
### Commit your changes to git
* Add all edited files with `git add file`. For example: `git add package.json` then commit you changes
with `git commit`.
* After that you can push you commited work to github: `git push`