0.0.2 • Published 2 years ago

@nx-gems/express-app v0.0.2

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

express-app

Generator for Express applications and APIs. This library was generated with Nx.

Getting started

Install this plugin in your existing nx repo.

npm install --save-dev @nx-gems/express-app

Run the plugin to generate an api

nx g @nx-gems/express-app:express-app test-api

This will create an express app at /apps/test-api with a example route of /accounts.

Execute the following command to run the express app:

nx serve test-api

Now point your browser to http://localhost:33333/accounts to test the example route.

Running unit tests

Run nx test express-app to execute the unit tests via Jest.