2.0.3 • Published 2 years ago

xpresso v2.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
2 years ago

XPRESSO

An express typescript generator to quickly develop REST API's

NpmVersion Travis (.org) branch npm GitHub pull requests GitHub issues

Installation

$ npm install -g xpresso

Quick Start

Install the cli tool

$ npm install -g xpresso

Navigate to the directory you wish to create the project in, and run the init command, followed by the project name. A new folder will be created that follows the name you provide:

$ cd projects && xpresso init comics

Navigate into the newly created directory and create a CRUD route with the route command:

$ cd comics && xpresso route comic

Next, create a comic model with the model command:

$ xpresso model comic

Build the project with the npm command:

$ npm run build

Start the server:

$ npm start

Use any REST client to test out the generated API

Features

  • Generates typescript project
  • JWT authentication
  • Dynamic route creation
  • Custom logger with context id
  • Request logging with context id
  • Tests with Jest

Usage

commands

Base commands available from the CLI

$ xpresso
    init [options] [name]
    model [name]
    route [options] [name]

init

Generates a new xpresso project

$ xpresso init [options] [name]
    -r, --repo [repo]        specify repository for the project
    -s, --summary [summary]  set the summary of the project
    --no-auth                disables jwt authentication

route

Generates a new model

$ xpresso route [options] [name]
    -w, --websocket  add a websocket handler
    --no-auth        disables jwt authentication for this route
    --no-spec        disables spec file generation for this route

model

Generates a new model

$ xpresso model [name]

Todo

  • Option to disable database
2.0.3

2 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.2.7

5 years ago

1.2.6

5 years ago

1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago