New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More ā†’
Socket
Sign inDemoInstall
Socket

@feathersjs/express

Package Overview
Dependencies
Maintainers
4
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@feathersjs/express - npm Package Compare versions

Comparing version 4.3.0-pre.2 to 4.3.0-pre.3

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [4.3.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.2...v4.3.0-pre.3) (2019-08-19)
### Bug Fixes
* Update all dependencies ([7d53a00](https://github.com/feathersjs/feathers/commit/7d53a00))
# [4.3.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.1...v4.3.0-pre.2) (2019-08-02)

@@ -8,0 +19,0 @@

23

package.json
{
"name": "@feathersjs/express",
"description": "Feathers Express framework bindings and REST provider",
"version": "4.3.0-pre.2",
"version": "4.3.0-pre.3",
"homepage": "https://feathersjs.com",

@@ -39,20 +39,21 @@ "main": "lib/",

"dependencies": {
"@feathersjs/commons": "^4.3.0-pre.2",
"@feathersjs/errors": "^4.3.0-pre.2",
"@types/express": "^4.17.0",
"@feathersjs/commons": "^4.3.0-pre.3",
"@feathersjs/errors": "^4.3.0-pre.3",
"@types/express": "^4.17.1",
"debug": "^4.1.1",
"express": "^4.17.1",
"lodash": "^4.17.15",
"uberproto": "^2.0.4"
},
"devDependencies": {
"@feathersjs/authentication": "^4.3.0-pre.2",
"@feathersjs/authentication-local": "^4.3.0-pre.2",
"@feathersjs/feathers": "^4.3.0-pre.2",
"@feathersjs/tests": "^4.3.0-pre.2",
"@feathersjs/authentication": "^4.3.0-pre.3",
"@feathersjs/authentication-local": "^4.3.0-pre.3",
"@feathersjs/feathers": "^4.3.0-pre.3",
"@feathersjs/tests": "^4.3.0-pre.3",
"axios": "^0.19.0",
"chai": "^4.2.0",
"lodash": "^4.17.13",
"mocha": "^6.1.4"
"lodash": "^4.17.15",
"mocha": "^6.2.0"
},
"gitHead": "4d350e5299315df3090a2231ef3caaf795dee994"
"gitHead": "9f4498e455d81e91acc1ffd3ced4d36ba06f8466"
}
# @feathersjs/express
[![Build Status](https://travis-ci.org/feathersjs/feathers.png?branch=master)](https://travis-ci.org/feathersjs/feathers)
[![Build Status](https://travis-ci.org/feathersjs/feathers.svg?branch=master)](https://travis-ci.org/feathersjs/feathers)
[![Dependency Status](https://img.shields.io/david/feathersjs/feathers.svg?style=flat-square&path=packages/express)](https://david-dm.org/feathersjs/feathers?path=packages/express)

@@ -9,44 +9,16 @@ [![Download Status](https://img.shields.io/npm/dm/@feathersjs/express.svg?style=flat-square)](https://www.npmjs.com/package/@feathersjs/express)

This plugin turns a Feathers v3+ application into a drop-in replacement for any Express application.
## Installation
```
npm install @feathersjs/express --save
npm install @feathersjs/client --save
```
> _Important:_ This plugin only works with `feathers` 3.0 and later
## Documentation
Please refer to the [@feathersjs/express API documentation](https://docs.feathersjs.com/api/express.html) for more details.
Refer to the [Feathers Express API documentation](https://docs.feathersjs.com/api/express.html) for more details.
## Complete Example
Here's an example of a Feathers server that uses `@feathersjs/express`.
```js
const feathers = require('@feathersjs/feathers');
const express = require('@feathersjs/express');
const app = express(feathers());
app.configure(express.rest());
app.use('/myservice', {
get(id) {
return Promise.resolve({ id });
}
});
app.use((req, res) => res.json({ message: 'Hello world' }));
app.listen(3030);
console.log('Feathers app started on 127.0.0.1:3030');
```
## License
Copyright (c) 2017
Copyright (c) 2019 [Feathers contributors](https://github.com/feathersjs/client/graphs/contributors)
Licensed under the [MIT license](LICENSE).
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with āš”ļø by Socket Inc