Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
5530e29da4 | |||
5f1d2c83c6 | |||
b84dd36885 | |||
c2d64ba39a | |||
85a5d7cdaf | |||
69380a2dbc | |||
fc292d83b9 | |||
b29961df95 | |||
f774a82ad5 | |||
5a45f4750b | |||
fc6227ef96 | |||
873aba3e0b |
4
.snyk
Normal file
4
.snyk
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
|
||||||
|
version: v1.13.3
|
||||||
|
ignore: {}
|
||||||
|
patch: {}
|
37
README.md
37
README.md
@ -1,24 +1,19 @@
|
|||||||
# smartsocket
|
# @pushrocks/smartsocket
|
||||||
|
easy and secure websocket communication
|
||||||
|
|
||||||
easy and secure websocket communication, TypeScript ready
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartsocket)
|
||||||
## Availabililty
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartsocket)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartsocket)
|
||||||
[](https://www.npmjs.com/package/smartsocket)
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartsocket/)
|
||||||
[](https://GitLab.com/pushrocks/smartsocket)
|
|
||||||
[](https://github.com/pushrocks/smartsocket)
|
|
||||||
[](https://pushrocks.gitlab.io/smartsocket/)
|
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
|
[](https://gitlab.com/pushrocks/smartsocket/commits/master)
|
||||||
[](https://GitLab.com/pushrocks/smartsocket/commits/master)
|
[](https://gitlab.com/pushrocks/smartsocket/commits/master)
|
||||||
[](https://GitLab.com/pushrocks/smartsocket/commits/master)
|
[](https://www.npmjs.com/package/@pushrocks/smartsocket)
|
||||||
[](https://www.npmjs.com/package/smartsocket)
|
[](https://snyk.io/test/npm/@pushrocks/smartsocket)
|
||||||
[](https://david-dm.org/pushrocks/smartsocket)
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
[](https://www.bithound.io/github/pushrocks/smartsocket/master/dependencies/npm)
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
[](https://www.bithound.io/github/pushrocks/smartsocket)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](http://standardjs.com/)
|
[](http://standardjs.com/)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
@ -108,9 +103,9 @@ mySmartsocketClient.serverCall('function', functionCallData).then(functionRespon
|
|||||||
> `data` is always a js object that you can design for your specific needs.
|
> `data` is always a js object that you can design for your specific needs.
|
||||||
> It supports buffers for large binary data network exchange.
|
> It supports buffers for large binary data network exchange.
|
||||||
|
|
||||||
For further information read the linked docs at the top of this README.
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
> | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||||
|
|
||||||
[](https://push.rocks)
|
[](https://maintainedby.lossless.com)
|
||||||
|
@ -1,6 +1,17 @@
|
|||||||
{
|
{
|
||||||
"gitzone": {},
|
"gitzone": {
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "pushrocks",
|
||||||
|
"gitrepo": "smartsocket",
|
||||||
|
"shortDescription": "easy and secure websocket communication",
|
||||||
|
"npmPackagename": "@pushrocks/smartsocket",
|
||||||
|
"license": "MIT",
|
||||||
|
"projectDomain": "push.rocks"
|
||||||
|
}
|
||||||
|
},
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": []
|
"npmGlobalTools": [],
|
||||||
|
"npmAccessLevel": "public"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "smartsocket",
|
"name": "smartsocket",
|
||||||
"version": "1.1.20",
|
"version": "1.1.26",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "smartsocket",
|
"name": "@pushrocks/smartsocket",
|
||||||
"version": "1.1.20",
|
"version": "1.1.26",
|
||||||
"description": "easy and secure websocket communication, TypeScript ready",
|
"description": "easy and secure websocket communication",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -38,5 +38,5 @@
|
|||||||
"@pushrocks/tapbundle": "^3.0.7",
|
"@pushrocks/tapbundle": "^3.0.7",
|
||||||
"@types/node": "^10.12.19"
|
"@types/node": "^10.12.19"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": false
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user