Returns a list of dummy contacts. Originally built as an API endpoint to use with the accompanying React Native training course.
npm install
Use npm scripts to work with the API as follows:
npm run dev
: runs the express server in development mode, usingnodemon
andts-node
to automatically restart the Express server as necessary.npm run build
: compiles the TypeScript files from thesrc/
folder into thelib
folder.npm start
: starts the Express server using the compiled files inlib/
. Use this in production.