hermes-io 2.2.29 → 2.2.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,14 @@ A lightweight javascript library that allows communication between components by
|
|
|
4
4
|
## Usage:
|
|
5
5
|
https://github.com/Maxtermax/hermes-io#useobserver-hook
|
|
6
6
|
|
|
7
|
+
# Hermes-io CLI
|
|
8
|
+
This CLI is the official scaffolding generator for [hermes-io](https://www.npmjs.com/package/hermes-io#get-started), its generates a simple folder structure that guaranty separation of concerns encompassing pivotal elements such as: [contexts](https://github.com/Maxtermax/hermes-io#context), [hooks](https://github.com/Maxtermax/hermes-io#useobserver-hook) and [observers](https://github.com/Maxtermax/hermes-io#observer).
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
npm i hermes-io-cli -g
|
|
12
|
+
```
|
|
13
|
+
Check the documentation: [here](https://www.npmjs.com/package/hermes-io-cli)
|
|
14
|
+
|
|
7
15
|
## Chrome extension
|
|
8
16
|
Install from chrome web store [here](https://chrome.google.com/webstore/detail/hermes-io/pjdkgcpikfmkncldipldmimanfkpeedm?hl=en)
|
|
9
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hermes-io",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.31",
|
|
4
4
|
"description": "A lightweight javascript library that allows communication between Reactjs components by using the observer pattern and the hook api",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|