The Wayback Machine - https://web.archive.org/web/20190310032152/https://github.com/feathersjs/feathers
Skip to content
A REST and real-time API layer for Node.js, React Native and the browser.
Branch: master
Clone or download
Latest commit 3ad094e Feb 15, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github chore: Add Lock bot configuration (#1197) Feb 7, 2019
packages tests: Increate Mocha browser test timeout since it is causing unreli… Feb 15, 2019
.codeclimate.yml chore(package): Move adapter tests into their own module (#1164) Jan 10, 2019
.gitignore fix: Do not inherit app object from Object prototype (#1153) Jan 2, 2019
.nycrc fix(chore): Properly configure and run code linter (#1092) Nov 16, 2018
.travis.yml chore(package): Update feathers-memory to the latest version and prep… Jan 6, 2019
Gruntfile.js packages: Adding @feathersjs/client package (#1013) Sep 21, 2018
LICENSE Prepare packages for release from Monorepo (#961) Aug 29, 2018
changelog.md
greenkeeper.json fix(chore): Remove CLI and generators that belong in their own reposi… Nov 16, 2018
lerna.json Fix Lerna commit message Sep 17, 2018
mocha.opts Prepare packages for release from Monorepo (#961) Aug 29, 2018
package-lock.json chore(package): Update feathers-memory to the latest version and prep… Jan 6, 2019
package.json chore: Add a top level changelog (#1162) Jan 9, 2019
readme.md packages: Adding @feathersjs/client package (#1013) Sep 21, 2018

readme.md

Feathers logo

A REST and realtime API layer for modern applications.

Greenkeeper badge Build Status Maintainability Test Coverage Download Status

Slack Status Telegram Status

Sauce Test 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.

Support

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Getting started

You can build your first real-time and REST API in just 4 commands:

$ npm install -g @feathersjs/cli
$ mkdir my-new-app
$ cd my-new-app/
$ feathers generate app
$ npm start

To learn more about Feathers visit the website at feathersjs.com or jump right into the Feathers docs.

See it in action

Here is all the code you need to create a RESTful, real-time message API that uses an in-memory data store:

const feathers = require('@feathersjs/feathers');
const express = require('@feathersjs/express');
const socketio = require('@feathersjs/socketio');

const memory = require('feathers-memory');

// Creates an Express compatible Feathers application
const app = express(feathers());

// Parse HTTP JSON bodies
app.use(express.json());
// Parse URL-encoded params
app.use(express.urlencoded({ extended: true }));
// Add REST API support
app.configure(express.rest());
// Configure Socket.io real-time APIs
app.configure(socketio());
// Register a messages service with pagination
app.use('/messages', memory({
  paginate: {
    default: 10,
    max: 25
  }
}));
// Register a nicer error handler than the default Express one
app.use(express.errorHandler());

// Add any new real-time connection to the `everybody` channel
app.on('connection', connection => app.channel('everybody').join(connection));
// Publish all events to the `everybody` channel
app.publish(data => app.channel('everybody'));

// Start the server
app.listen(3030).on('listening', () =>
  console.log('Feathers server listening on localhost:3030')
);

Then run

npm install @feathersjs/feathers @feathersjs/socketio @feathersjs/express feathers-memory
node app

and go to http://localhost:3030/messages. That's it! There's a lot more you can do with Feathers including; using a real database, authentication, authorization, clustering and more! Head on over to the Feathers docs to see just how easy it is to build scalable real-time apps.

Documentation

The Feathers docs are loaded with awesome stuff and tell you every thing you need to know about using and configuring Feathers.

Security

We ❤️ the community and take security very seriously. No one wants their app hacked. If you have come across a security concern please report it responsibly. Visit the Security section of the docs to learn more about how you can make sure your app is secure.

License

Copyright (c) 2018 Feathers contributors

Licensed under the MIT license.

You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.