Socket
Socket
Sign inDemoInstall

expressjsmvc

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expressjsmvc - npm Package Compare versions

Comparing version 3.4.11 to 3.4.12

bin/expressjsmvc

4

app.js

@@ -7,7 +7,7 @@ /**

var express = require("express");
var include = require("include");
var include = require("includemvc");
var config = include.path("config", "config.json");
var app = module.exports = exports = express();
var path = require("path");
var mvc = require("expressmvc");
var mvc = require("expressjsmvc");
var flash = require("express-flash");

@@ -14,0 +14,0 @@

@@ -1,2 +0,2 @@

// Require lib/expressmvc to make it module
module.exports = require("./lib/expressmvc");
// Require lib/expressjsmvc to make it module
module.exports = require("./lib/expressjsmvc");
var crypto = require("crypto")
, assert = require('assert')
, include = require("include")
, include = require("includemvc")
, config = include.path("config", "config.json");

@@ -5,0 +5,0 @@

@@ -1,2 +0,2 @@

var include = require("include");
var include = require("includemvc");
var app = include.app();

@@ -3,0 +3,0 @@ var io = require("socket.io");

{
"name": "expressjsmvc",
"description": "An Express.js application organized in an MVC way with extra helpers and utilities",
"version": "3.4.11",
"version": "3.4.12",
"author": "Luis Elizondo <lelizondo@gmail.com>",

@@ -15,2 +15,3 @@ "scripts": {

"mvc",
"expressjsmvc",
"expressmvc"

@@ -33,3 +34,3 @@ ],

},
"repository": "git://github.com/luiselizondo/expressmvc",
"repository": "git://github.com/luiselizondo/expressjsmvc",
"engines": {

@@ -40,5 +41,5 @@ "node": ">= 0.8.0"

"bin": {
"expressmvc": "./bin/expressmvc"
"expressjsmvc": "./bin/expressjsmvc"
},
"license": "MIT"
}

@@ -11,7 +11,7 @@ Express MVC is an Express.js framework organized in an MVC way with extra helpers and utilities.

expressmvc install application-name
expressjsmvc install application-name
### Download the modules defined in expressmvc.json
### Download the modules defined in expressjsmvc.json
expressmvc install-modules
expressjsmvc install-modules

@@ -55,3 +55,3 @@ ### Install required packages

var include = require("include");
var include = require("includemvc");
var app = include.app();

@@ -69,3 +69,3 @@

#### Module package manager
ExpressMVC provides you with an easy way to define the needed modules by your application. Define the modules you need to download in expressmvc.json. We use git to download the modules so you need to have it installed first. All defined modules will be downloaded into the modules directory.
ExpressMVC provides you with an easy way to define the needed modules by your application. Define the modules you need to download in expressjsmvc.json. We use git to download the modules so you need to have it installed first. All defined modules will be downloaded into the modules directory.

@@ -72,0 +72,0 @@ #### Enable or disable modules easily

var express = require('express');
var http = require('http');
var mongoose = require('mongoose');
var include = require("include");
var include = require("includemvc");
var app = include.app();

@@ -6,0 +6,0 @@ var config = app.config;

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