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

lark-mvc

Package Overview
Dependencies
Maintainers
3
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lark-mvc - npm Package Compare versions

Comparing version 0.4.0 to 0.4.2

.gitignore.old

7

index.js

@@ -11,7 +11,4 @@ var path = require('path');

var larkMVC = function(options, lark){
if (!options || !options.path) {
var path = 'models'
}else{
var path = options.path
}
var path = (!options || !options.path) ? 'models': options.path
rd.eachFileFilterSync(path, /\.js$/, function (file) {

@@ -18,0 +15,0 @@ var func = require(file)

@@ -34,6 +34,17 @@ /**

var pageServices = {}
var dataServices = {}
var daoServices = {}
if (typeof(global.pageServices) === 'undefined') {
global.pageServices = {}
}
var pageServices = global.pageServices
if (typeof(global.dataServices) === 'undefined') {
global.dataServices = {}
}
var dataServices = global.dataServices
if (typeof(global.daoServices) === 'undefined') {
global.daoServices = {}
}
var daoServices = global.daoServices
/*

@@ -40,0 +51,0 @@ * Base layer class which enable emitting events.

{
"name": "lark-mvc",
"version": "0.4.0",
"version": "0.4.2",
"description": "MVC for building web server with lark.js",

@@ -5,0 +5,0 @@ "main": "index.js",

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