npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@feathersjs-offline/server

v2.0.7

Published

Server part of implementation of the own-data / own-net principles for supporting offline-first functionality for Feathers (mobile) applications.

Downloads

34

Readme

@feathersjs-offline/server

npm version Build Status Known Vulnerabilities Maintainability Test Coverage Download Status lerna

The server-part of Feathers Offline-first replication with optimistic updates (own-data / own-net).

Installation

npm install '@feathersjs-offline/server' --save

Options:

All options available for the wrapped adapter can be used in addition to:

  • useShortUuid (optional, default true) - Generate short uuids. If false long uuids are generated. This option should match whatever you choose on the client.
  • dates (optional, default false) - Generate short uuid's. If false long uuid's are generated. This option should match whatever you choose on the server.
  • adapterTest (optional, default false) - This is usually only used for running adapter tests as it suppresses returning the control attributes - updatedAt, onServerAt, deletedAt, and uuid (or what ever you chose to call them) in results.
  • myUuid (optional, default 'uuid') - Rename control attribute uuid to suit your model.
  • myUpdatedAt (optional, default 'updatedAt') - Rename control attribute updatedAt to suit your model.
  • myOnServerAt (optional, default 'onServerAt') - Rename control attribute onServerAt to suit your model.
  • myDeletedAt (optional, default 'deletedAt') - Rename control attribute deletedAt to suit your model.

Please note, when renaming control attributes you must do it on both the client and the server side.

Documentation

You can read the original docs here discussing the theories behind it all. The new and updated documentation is available here.

Summary:

own-data / own-net are two related strategies implemented in Feathers Offline-first. Both strategies queues CRUD events for a wrapped service locally until the device have connection to the server, but to the user the CRUD events are executed immediately using optimistic mutation strategy.

own-data will re-play all queued event to the server in the order they were performed in offline mode. This allows the the server to react on each event (mutation). It may, for example, run hooks which send emails on certain mutations.

own-net on the other hand will only play the end result of all queued events for a given item (ie. row or document) to the server. If an item (document) is mutated 5 times only the result will reach the server when connection is established. If a record is patched and finally removed while still offline, the server will never see the mutations. The server may still react on each event (mutation), but bear in mind the changes are possibly only net changes. own-net usually results in much shorter synchronization times and reduced traffic between client and server.

This package is the server wrapper which works in co-operation with @feathersjs-offline/client package for clients.

For own-data/ own-net implementations you must assure that the table (or collection) under control must implement both uuid, updatedAt, onServerAt, and deletedAt attributes.

Pro tip: If your key is not uuid then you have to manually set the key before calling create either on the client or in a service hook as you have no guarantee that the backend answers.

Also, updates to the client from a requested sync will not execute any hooks on the client but any queued events on the device will trigger hooks on the server (both on back-end and possibly on any other devices depending on your channels set-up).

This wrapper works properly only in conjunction with the client counterpart import { owndataWrapper, ownnetWrapper } from '@feathersjs-offline/client'; configured correctly on the client service.

Pro tip: owndataWrapper, ownnetWrapper, and realtimeWrapper works on both a Feathers client and a Feathers server.

Example

Here is an example of a FeathersJS server with a messages in-memory service that supports pagination:

$ npm install @feathersjs/feathers @feathersjs/express @feathersjs/socketio @feathersjs/errors feathers-memory @feathersjs-offline/server

In app.js:

const feathers = require('@feathersjs/feathers');
const express = require('@feathersjs/express');
const socketio = require('@feathersjs/socketio');
const realtimeWrapper = require('@feathersjs-offline/server');

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

// Create an Express compatible Feathers application instance.
const app = express(feathers());
// Turn on JSON parser for REST services
app.use(express.json());
// Turn on URL-encoded parser for REST services
app.use(express.urlencoded({ extended: true }));
// Enable REST services
app.configure(express.rest());
// Enable REST services
app.configure(socketio());
// Create an in-memory FeathersJS offline realtime service with a default page size of 2 items
// and a maximum size of 4
app.use('/messages', memory({
  paginate: {
    default: 2,
    max: 4
  }
}));
realtimeWrapper(app, '/messages');

// Set up default error handler
app.use(express.errorHandler());

// Create a dummy Message
app.service('messages').create({
  text: 'Message created on server'
}).then(message => console.log('Created message', message));

// Start the server.
const port = 3030;

app.listen(port, () => {
  console.log(`Feathers server listening on port ${port}`)
});

Run the example with node app and go to http://localhost:3030/messages.

For at more useful example see this.

See also

This service wrapper works in conjunction with either the own-data or the own-net client counterparts provided by @feathersjs-offline/client.

License

Copyright (c) 2020

Licensed under the MIT license.