npm list -g --depth=0
npm uninstall -g \
Content started from wsargent's github.
I work for Lightbend on the Play team. I think the company is awesome, and if you're looking at containers because you're moving to the cloud and thinking about distributed systems, you should keep reading.
Lightbend make microservices happen. Developers use Lagom to put together resilient ("chaos monkey resistant") microservices. In production, there's Conductr to orchestrate containers -- including Docker. Finally, there's monitoring to tell you wha
URL | HTTP Verb | Action |
---|---|---|
/photos/ | GET | index |
/photos/new | GET | new |
/photos | POST | create |
/photos/:id | GET | show |
/photos/:id/edit | GET | edit |
/photos/:id | PATCH/PUT | update |
/photos/:id | DELETE | destroy |
Definitely not comprehensive. This is meant to be a basic memory aid with links to get more details. I'll add to it over time.
$ npm install mongoose --save
const mongoose = require('mongoose');
const connectionString = process.env.MONGO_URI || 'mongodb://localhost/databasenamegoeshere';