homebridge-secvest-kit v0.1.0
Homebridge Secvest Kit
This plugin makes Abus Secvest devices available as Homekit accessories.
Usage
TODO
Development
Install Development Dependencies
Using a terminal, navigate to the project folder and run this command to install the development dependencies:
npm installBuild Plugin
TypeScript needs to be compiled into JavaScript before it can run. The following command will compile the contents of your src directory and put the resulting code into the dist folder.
npm run buildPublish Package
When you are ready to publish your plugin to npm, make sure you have removed the private attribute from the package.json file then run:
npm publishIf you are publishing a scoped plugin, i.e. @username/homebridge-xxx you will need to add --access=public to command the first time you publish.
Publishing Beta Versions
You can publish beta versions of your plugin for other users to test before you release it to everyone.
# create a new pre-release version (eg. 2.1.0-beta.1)
npm version prepatch --preid beta
# publsh to @beta
npm publish --tag=betaUsers can then install the beta version by appending @beta to the install command, for example:
sudo npm install -g homebridge-example-plugin@beta4 years ago