Skip to content
Please note that GitHub no longer supports Internet Explorer.

We recommend upgrading to the latest Microsoft Edge, Google Chrome, or Firefox.

Learn more
The MEAN stack uses Mongo, Express, Angular(6) and Node for simple and scalable fullstack js applications
Branch: master
Clone or download
Latest commit 571415e Mar 2, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
_layouts Removed UA config Mar 2, 2019
assets Added google analitics Nov 28, 2018
server Adding the conditional framework support Sep 26, 2018
src fix admin route Jul 2, 2018
.dockerignore
.editorconfig
.env.example
.gitignore
CNAME Update CNAME Nov 26, 2018
Dockerfile patching up docker stuff Sep 25, 2018
README.md
_config.yml referencing image Nov 26, 2018
angular.json
docker-compose.yml
karma.conf.js
package.json Fixed #1936, #1938 Feb 11, 2019
protractor.conf.js
tsconfig.json
tslint.json project is running with angular 6 Jun 5, 2018
yarn.lock Adding the conditional framework support Sep 26, 2018

README.md

Welcome to the mean stack

The mean stack is intended to provide a simple and fun starting point for cloud native fullstack javascript applications.
MEAN is a set of Open Source components that together, provide an end-to-end framework for building dynamic web applications; starting from the top (code running in the browser) to the bottom (database). The stack is made up of:

  • MongoDB : Document database – used by your back-end application to store its data as JSON (JavaScript Object Notation) documents
  • Express (sometimes referred to as Express.js): Back-end web application framework running on top of Node.js
  • Angular (formerly Angular.js): Front-end web app framework; runs your JavaScript code in the user's browser, allowing your application UI to be dynamic
  • Node.js : JavaScript runtime environment – lets you implement your application back-end in JavaScript

Pre-requisites

Installation

git clone https://github.com/linnovate/mean
cd mean
cp .env.example .env
npm install
npm start (for development)

Docker based

git clone https://github.com/linnovate/mean
cd mean
cp .env.example .env
docker-compose up -d

Credits

  • The MEAN name was coined by Valeri Karpov.
  • Initial concept and development was done by Amos Haviv and sponsered by Linnovate.
  • Inspired by the great work of Madhusudhan Srinivasa.
You can’t perform that action at this time.