|
@@ -0,0 +1,18 @@
|
|
|
+# Converse.js Community Plugins
|
|
|
+
|
|
|
+This repo contains community contributed plugins, not included in the core of Converse.js.
|
|
|
+
|
|
|
+## Creating a plugin
|
|
|
+
|
|
|
+To create a new plugin, use [generator-converse](https://github.com/conversejs/generator-conversejs),
|
|
|
+which is a [Yeoman](http://yeoman.io/) generator.
|
|
|
+
|
|
|
+Install Yeoman and the generator:
|
|
|
+
|
|
|
+ npm install -g yo generator-conversejs
|
|
|
+
|
|
|
+Then, to create a new plugin, run the following:
|
|
|
+
|
|
|
+ $ yo conversejs converse-pluginname
|
|
|
+
|
|
|
+Where `pluginname` should be the name of your plugin.
|