contact-list
Manage a list of your personal contacts.
Setup
This project is built on Node.js. You can download Node.js here.
Persistence
This application uses the LocalStorage API for persistence. If you'd like to clear your contacts, please use your browser's built-in developer tools.
Environment variables
You must have the PORT
environment variable set to a free local port in the range of 1024 - 65535 (0 - 65535 if running with elevated privileges). This will be the port the application will listen on for incoming connections.
Scripts
The following scripts can be run by invoking them via npm run <script>
:
develop
: Lint, test, and deploy the application on file change. Useful for development.lint
: Runs static analysis (read: linting) on application source.start
: Deploys the application which will be available athttp://localhost:${PORT}
.test
: Runs the application test suite.