New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@feathersjs/primus-client

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@feathersjs/primus-client - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

# Change Log
## [v1.0.0](https://github.com/feathersjs/primus-client/tree/v1.0.0) (2017-11-01)
[Full Changelog](https://github.com/feathersjs/primus-client/compare/v1.0.0-pre.2...v1.0.0)
**Merged pull requests:**
- Update dependencies for release [\#3](https://github.com/feathersjs/primus-client/pull/3) ([daffl](https://github.com/daffl))
## [v1.0.0-pre.2](https://github.com/feathersjs/primus-client/tree/v1.0.0-pre.2) (2017-10-23)

@@ -4,0 +11,0 @@ [Full Changelog](https://github.com/feathersjs/primus-client/compare/v1.0.0-pre.1...v1.0.0-pre.2)

const Service = require('@feathersjs/socket-commons/client');
module.exports = function (connection, options) {
function primusClient (connection, options) {
if (!connection) {

@@ -29,2 +29,5 @@ throw new Error('Primus connection needs to be provided');

return initialize;
};
}
module.exports = primusClient;
module.exports.default = primusClient;
{
"name": "@feathersjs/primus-client",
"description": "Client services for Primus and feathers-primus",
"version": "1.0.0",
"version": "1.0.1",
"homepage": "https://github.com/feathersjs/primus-client",
"main": "lib/",
"main": "lib/index.js",
"keywords": [

@@ -50,4 +50,3 @@ "feathers",

"dependencies": {
"@feathersjs/socket-commons": "^3.0.0",
"ws": "^3.2.0"
"@feathersjs/socket-commons": "^3.0.0"
},

@@ -63,4 +62,5 @@ "devDependencies": {

"semistandard": "^11.0.0",
"uws": "^8.14.1"
"uws": "^8.14.1",
"ws": "^3.3.1"
}
}