Version 1.0

Command Line Interface

Usage: full-stack [options] [value]

Options:

init, --init            Creates a base project using the MEAN Stack

serve, --serve          Serves the local instance the application.

version, --version      Displays version

help, --help            Displays the description for each of the flags available

Read the README.md for more detailed options

Example:

$ full-stack init myProjectName

Generated Application

├── bin
│   └── www.ts
├── build
│   └── compiled
├── client
│   ├── app.ts
│   ├── components
│   │   ├── account-details
│   │   │   ├── account-details.component.css
│   │   │   ├── account-details.component.html
│   │   │   └── account-details.component.ts
│   │   ├── accounts
│   │   │   ├── account.model.ts
│   │   │   ├── accounts.component.css
│   │   │   ├── accounts.component.html
│   │   │   ├── accounts.component.ts
│   │   │   └── accounts.service.ts
│   │   ├── app
│   │   │   ├── app.component.css
│   │   │   ├── app.component.html
│   │   │   ├── app.component.ts
│   │   │   ├── app.module.ts
│   │   │   └── app.routing.ts
│   │   └── menu
│   │       ├── menu.component.css
│   │       ├── menu.component.html
│   │       └── menu.component.ts
│   ├── index.html
│   ├── polyfills.ts
│   └── vendor.ts
├── config
│   ├── build.js
│   ├── settings.json
│   ├── webpack.client.js
│   └── webpack.server.js
├── server
│   ├── controllers
│   │   └── accounts.ts
│   ├── models
│   │   ├── accounts-schema.ts
│   │   └── accounts.ts
│   ├── routes
│   │   └── routes.ts
│   └── views
│       ├── error.ejs
│       ├── index.ejs
│       └── partials
│           └── json-output.ejs
├── app.ts
├── package.json
├── README.md
├── tsconfig.json
└── typings.json
Still need help? Get in touch!
Last updated on 24th Oct 2020