Evolution of a Microservice

evolution

  1. Write a function.
  2. Put it in a separate file and expose it as a CommonJS module.
  3. Move the function to it's own Git repo.
  4. Publish to NPM.
  5. Put it behind HTTP Service.

Most of the time you don't continue beyond step 2. If the function needs to be shared with other projects, move it to it's own Git repo. Do you need semantic versioning? publish it to NPM. Do you want to consume it over HTTP? set up an HTTP service in front of it.