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

crude

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crude - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

6

entity.js
/**
* @fileOverview The Entity base class.
*/
var EventEmitter = require('events').EventEmitter;
var util = require('util');

@@ -13,4 +15,7 @@ var midd = require('middlewarify');

* @constructor
* @extends {events.EventEmitter}
*/
var Entity = module.exports = function(Model, optUdo) {
EventEmitter.call(this);
/** @type {mongoose.Model} The mongoose model */

@@ -31,2 +36,3 @@ this.Model = Model;

};
util.inherits(Entity, EventEmitter);

@@ -33,0 +39,0 @@ /**

2

package.json
{
"name": "crude",
"description": "Seamless CRUD control operations for node.",
"version": "0.0.8",
"version": "0.0.9",
"homepage": "https://github.com/talksession/node-crude",

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

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