Giter Club home page Giter Club logo

tse-cli's Introduction

tse-cli

CLI for scaffolding tse boilerplate

  • Init project from default template
npm install -g tse-cli

Init tse project

    tse init my-first-tse

Generate a new entity

    tse make coffe <- coffe here is the entity name

picture alt

  • Entity will contains:
  1. Schema definition with created_date timestamp
import * as mongoose from 'mongoose';

const Schema = mongoose.Schema;

export const CoffeSchema = new Schema({
   created_date: {
       type: Date,
       default: Date.now
   }
});
  1. CRUD routes
import coffeController from '../controllers/CoffeController';
import {router} from '../lib/Facades';
router.group({
   prefix: 'coffe',
   middleware: []
}, router => {
   router.post('', coffeController.store);
   router.get(':coffeId', coffeController.getCoffeWithID);
   router.get('', coffeController.getCoffes);
   router.post('', coffeController.store);
   router.put(':coffeId', coffeController.updateCoffe);
   router.delete(':coffeId', coffeController.deleteCoffe);
});
  1. Controller that support base CRUD
import * as mongoose from 'mongoose';
import { Controller } from './Controller';
import { CoffeSchema } from '../models/CoffeSchema';
import { Request, Response } from '../lib/framework/application/http';
const Coffe = mongoose.model('Coffe', CoffeSchema);
export class CoffeController extends Controller {
   public getCoffes (req: Request, res: Response) {
       Coffe.find({}, (err, entity) => {
           if (err) {
               res.send(err);
           }
           res.respond(entity);
       });
   }

   public store(req: Request, res: Response) {
       Coffe.create(req.body, (err, entity) => {
           if (err) {
               res.send(err);
           }
           res.respond(entity);
       });
   }

   public getCoffeWithID (req: Request, res: Response) {
       Coffe.findById(req.params.coffeId, (err, entity) => {
           if (err) {
               res.send(err);
           }
           res.respond(entity);
       });
   }

   public updateCoffe (req: Request, res: Response) {
       Coffe.findOneAndUpdate({ _id: req.params.coffeId }, req.body, { new: true }, (err, entity) => {
           if (err) {
               res.send(err);
           }
           res.respond(entity);
       });
   }

   public deleteCoffe (req: Request, res: Response) {
       Coffe.remove({ _id: req.params.coffeId }, (err, entity) => {
           if (err) {
               res.send(err);
           }
           res.respond({ message: 'Successfully deleted Coffe!'});
       });
   }
}

export default new CoffeController();

Stay In Touch

License

MIT

Copyright (c) 2018-present, Binaryk (Eduard) Lupacescu

tse-cli's People

Contributors

binaryk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.