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

mvc-node-express

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

mvc-node-express

MVC framework for express js

  • 1.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

mvc-node-express

mvc-node-express

modern node js and express framwork in MVC architecture if you are work with php/laravel framwork so this is great because you know this framwork architecture lets look at this framwork architecture

|---app
|      |---Controllers
|      |            |---Auth
|      |---Middleware
|      |            |---Auth
|      |---Models
|
|
|---public
|      |---css
|      |---fonts
|      |---images
|      |---img
|      |---js
|      |---scss
|      |---vendor
|
|
|---routes
|
|
|---views
|
|
|---.gitignore
|
|---package-lock.json
|
|---package.json
|
|---server.js

app

this folder conatins 3 subfolders:

Controllers

this folder is used to place any Controller you want in your application this folder has a subfolder with Auth name that contains Controllers used in register/login

Middleware

this folder is used to place any Middleware you want in your application this folder has a subfolder with Auth name that contains Middleware used in register/login

Models

this folder is used to place any Models you want in your application by default we put User Model in it that used for Auth system

public

this folder is a place to hold static files like css,js,images,... every static file you need put in your project you must put it in this folder

routes

this folder contain a file route.js that contain any route in your application Auth routes added by Default validation filters are comming in this file with an array but catching errors passing to Middleware

views

this folder contains any view file that used in your project default engine of this framwork is PUG engine

server

server.js file contains codes that you need to start your server the default port after start the application is 800 you can start your server with:

 npm start

after that you can see your application in:

 http://localhost:800

github

github page   :   MVCExpress

Keywords

FAQs

Package last updated on 02 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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