From bada3d12438fecf4b2fb29fd3372d5ad12f26214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Sun, 31 Jul 2022 23:38:19 +0200 Subject: [PATCH] add README. --- README.md | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..b9acd68e --- /dev/null +++ b/README.md @@ -0,0 +1,57 @@ +# neko-client +Connect to [demodesk/neko](https://github.com/demodesk/neko) backend with self contained vue component. + +For **community edition** neko with GUI and _plug & play_ deployment visit [m1k1o/neko](https://github.com/m1k1o/neko). + +## Installation +Code is published to public GitHub npm repository. + +```bash +# npm command +npm i @demodesk/neko +# yarn command +yarn add @demodesk/neko +``` + +### Registry setup + +```bash +# npm command +echo @demodesk:registry=https://npm.pkg.github.com >> .npmrc +# yarn command +echo \"@demodesk:registry\" \"https://npm.pkg.github.com\" >> .yarnrc +``` + +### Example +API consists of accessing Vue reactive state, calling various methods and subscribing to events. Simple usage: + +```html + + + + + + + +
+ +
+ + +```