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

feathers-memory

Package Overview
Dependencies
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feathers-memory - npm Package Compare versions

Comparing version 0.1.2 to 0.2.0

.travis.yml

6

memory.js

@@ -118,2 +118,6 @@ var Proto = require('uberproto');

module.exports = MemoryService;
module.exports = function(options) {
return Proto.create.call(MemoryService, options);
}
module.exports.Service = MemoryService;

2

package.json
{
"name": "feathers-memory",
"description": "Feathers in memory service",
"version": "0.1.2",
"version": "0.2.0",
"homepage": "https://feathersjs.com",

@@ -6,0 +6,0 @@ "repository": {

feathers-memory
===============
An in memory feathers service (probably not for production use)
[![Build Status](https://travis-ci.org/feathersjs/feathers-memory.png?branch=master)](https://travis-ci.org/feathersjs/feathers-memory)
[![Code Climate](https://codeclimate.com/github/feathersjs/feathers-memory.png)](https://codeclimate.com/github/feathersjs/feathers-memory)
An in memory CRUD service for [feathers](http://feathersjs.com) (probably not for production use)
var chai = require('chai');
var expect = chai.expect;
var MemoryService = require('./memory');
var Proto = require('uberproto');
var memory = require('./memory');
var service;

@@ -9,3 +8,3 @@

beforeEach(function(done){
service = Proto.create.call(MemoryService);
service = memory();
service.create({

@@ -12,0 +11,0 @@ id: 1,

Sorry, the diff of this file is not supported yet

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