57c43a1f6b
* Changed default listening port to something slightly more meaningful * Removed TCP socket and made websocket the default option (as opposed to 'None') * Updated template * Updated ReceivedBuffer to allow direct message forwarding * ignoring vscode directory * Push messages mechanism for websocket client-clients * Removed flawed chunking example * ... but added bunch of websocket examples in return! * Moves js example directory * Cargo fmt * Removed old listener code
30 lines
659 B
JSON
30 lines
659 B
JSON
{
|
|
"name": "nym-client-websocket-demo",
|
|
"version": "0.7.0",
|
|
"description": "Connect to a local Nym client, send and retrieve from the Nym network. ",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"start": "webpack-dev-server"
|
|
},
|
|
"keywords": [
|
|
"nym",
|
|
"anonymity",
|
|
"mixnet",
|
|
"client",
|
|
"rust",
|
|
"websockets"
|
|
],
|
|
"author": "Dave Hrycyszyn",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"webpack": "^4.42.1",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-dev-server": "^3.10.3"
|
|
},
|
|
"dependencies": {
|
|
"core-js": "^3.6.5",
|
|
"html-webpack-plugin": "^4.2.0"
|
|
}
|
|
} |