Skip to content

Commit a034807

Browse files
committed
init commit
0 parents  commit a034807

19 files changed

+2584
-0
lines changed

.eslintrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "./node_modules/avasuro-eslint-config/2__single_quotes_and_spaces/.eslintrc",
3+
"rules": {
4+
"no-param-reassign": "off"
5+
}
6+
}

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Logs
2+
logs/
3+
*.log
4+
5+
node_modules/
6+
.idea/

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
test

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 avasuro
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<div align="center">
2+
<a href="https://github.com/avasuro/json-rpc-msg">
3+
<p>JSON-RPC MSG</p>
4+
</a>
5+
<p>
6+
Library for <a href="http://nodejs.org">Node.js</a> and <a href="https://en.wikipedia.org/wiki/JavaScript">JavaScript</a> to parse and create <a href="https://www.jsonrpc.org/specification">JSON RPC 2.0</a> messages.
7+
</p>
8+
</div>
9+
10+
## About
11+
12+
The **json-rpc-msg** is a library with zero dependencies that provides an API to parse and create valid JSON-RPC 2.0 messages.
13+
14+
## Quick start
15+
16+
Install:
17+
```
18+
npm install --save json-rpc-msg
19+
```
20+
21+
TODO: usage
22+
23+
## License
24+
25+
[MIT](LICENSE)

0 commit comments

Comments
 (0)