Hello World
A simple example
Introduction
In this section we are going to create a simple hello world application.
Here's what you are going to learn:
Connecting to a database
Inserting and retrieving a document
Your first application
We start by setting up our storage engine. Nabu will, with its default configuration, create databases in memory for us. We will later explore how we can store documents on the file system.
Next we create a collection, insert a single document into it and then run a query for all documents on that same collection. Just like in MongoDB, the find method will return a cursor that we can use to extract the results. Here we pick the first entry and print it to the command line.
Running the app
To test it out you can install ts-node which allows direct execution of typescript on Node.js.
Lets run the application
The output should be something like this
Notice that an ID has been generated for our document since we did not supply one ourselves.
Last updated
Was this helpful?