Skip to content

Instantly share code, notes, and snippets.

@snigo
Last active November 5, 2021 12:35
Show Gist options
  • Save snigo/3ddc5343e6fc7c041dccec2819c8985c to your computer and use it in GitHub Desktop.
Save snigo/3ddc5343e6fc7c041dccec2819c8985c to your computer and use it in GitHub Desktop.
/** Accessing files */
fs.readFile('./index.html', handleDoneReading);
/** Dealing with streams */
httpClient.get(API_URL)
.subsribe(handleObservableData);
/** Accessing database */
User.findOne({ name: 'Igor' }, handleFoundData);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment