Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

feathers

Package Overview
Dependencies
Maintainers
2
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feathers

Build Better APIs, Faster than Ever.

  • 2.0.0-pre.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
393
decreased by-80.58%
Maintainers
2
Weekly downloads
 
Created
Source
Feathers logo

Build Better APIs, Faster than Ever

NPM

Build Status Code Climate Slack Status

Feathers is a real-time, micro-service web framework for NodeJS that gives you control over your data via RESTful resources, sockets and flexible plug-ins.

Getting started

Visit the website at feathersjs.com to read the Getting started guide or learn how to build real-time applications with jQuery, Angular, React, CanJS, iOS, Android - you name it - and Feathers as the backend in our guides.

A MongoDB REST and real-time API

Want to see it in action? Here is a full REST and real-time todo API that uses MongoDB:

// app.js
import feathers from 'feathers';
import rest from 'feathers-rest';
import socketio from 'feathers-socketio';
import mongodb from 'feathers-mongodb';
import bodyParser from 'body-parser';

const app = feathers();
const todoService = mongodb({
  db: 'feathers-demo',
  collection: 'todos'
});

app.configure(rest())
  .configure(socketio())
  .use(bodyParser.json())
  .use('/todos', todoService)
  .use('/', feathers.static(__dirname))
  .listen(3000);

Then run

npm install feathers feathers-rest feathers-socketio feathers-mongodb body-parser
node app

and go to http://localhost:3000/todos. That's all the code you need to have a full real-time CRUD API.

Don't want to use MongoDB? Feathers has plugins for many other databases and you can easily write your own adapters.

License

MIT

Authors

Feathers contributors

Keywords

FAQs

Package last updated on 16 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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