kamerk22 / mevn-cli

Light speed setup for MEVN(Mongo Express Vue Node) Apps

Home Page:http://mevn.madhacks.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mevn-Cli

Build Status npm version Downloads PRs Welcome

A CLI tool for getting started with MEVN stack. It offers various reliable boilerplates as given below and additional utilities for building a MEVN app. It helps out, beginner developers to easily create a template for their Web application development.

Getting Started

Currently, this tool works on the Windows and Linux platform.

Prerequisites

  • npm - It is the package manager for node.
  • Node.js -Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser.
  • Git - Git is a version control system for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for source code management in software development.

Installing

To install the package:-

npm install -g mevn-cli

Commands

Initial Command

This command Initialises the project.

mevn init appname

Server Commands

These commands are used to generate the code necessary for running a server.

command description
mevn create:route To create the Routes-File(API)
mevn create:model To create the Models-File(SCHEMA)
mevn create:controller To create the Controllers-File
mevn create:config To create the Config-File

General Commands

These are generic commands for the entire project.

command description
mevn run:server To run the Server
mevn run:client To run the Client
mevn add:package To add additional packages as required
mevn create:component <component_name> To create new components as required
mevn codesplit <component_name> Lazy load components as required
mevn create:git-repo To create a GitHub repository and fire the first commit
mevn dockerize To run the client and server in separate docker containers
mevn deploy To deploy the app to Heroku

Features

  • This tool provides an easy way to build a web app by providing a super simple boilerplate project and a reliable boilerplate pwa to build upon.
  • Its written in ES6 syntax, which is a developer-friendly syntax that keeps the code simpler and smaller.
  • The whole project is done in modules(thanks to ES6 syntax) which enhances user readability and much more compact code.
  • Mevn-Cli will automate the files and generate the codes necessary to start and run a server, API etc

Demo

asciicast

Contributing

Before contributing to this repository, please first discuss the change you wish to make via issue, or any other method with the owners of this repository before making a change. Kindly have a look at the Contributing Guidelines to know more regarding the codebase and project structure.

How do I contribute?

  1. Ensure you have no "dummy" files left, if you do simple add them to the bottom of the .gitignore.
  2. Fork and clone our repository.
  3. Make your life-changing changes.
  4. Fire in sudo npm link to test everything works fine.
  5. Commit and push your changes.
  6. Make a detailed pull request.

npm link creates a symlink in the global folder making mevn command globally available within your local developmet environment

Why should I contribute?

Contributing helps people and makes the world simply a better place, without contributors this project would cease to exist.

What if I cannot code or do not like it?

You can always write documentation, most repositories lack in it.

What is next?

Nothing! You're done and ready to get coding!

Versioning And Help

command description
mevn version Check CLI version
mevn --help Get help and check usage

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

About

Light speed setup for MEVN(Mongo Express Vue Node) Apps

http://mevn.madhacks.co

License:MIT License


Languages

Language:JavaScript 99.6%Language:Vue 0.4%