@ihadeed/express
TypeScript icon, indicating that this package has built-in type declarations

600.0.0 • Public • Published

@feathersjs/express

Build Status Dependency Status Download Status

Feathers Express framework bindings and REST provider

This plugin turns a Feathers v3+ application into a drop-in replacement for any Express application.

Installation

npm install @feathersjs/express --save

Important: This plugin only works with feathers 3.0 and later

Documentation

Please refer to the @feathersjs/express API documentation for more details.

Complete Example

Here's an example of a Feathers server that uses @feathersjs/express.

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

Licensed under the MIT license.

Package Sidebar

Install

npm i @ihadeed/express

Weekly Downloads

17

Version

600.0.0

License

MIT

Unpacked Size

68.3 kB

Total Files

15

Last publish

Collaborators

  • ihadeed