This post serves as a quick start guide on how to use the MySQL Document Store with the official Node.js connector. It mainly highlights how easy it is to leverage CRUD-style operations and getting up and running with the X DevAPI.
Before you jump in
Make sure you have Node.js 7.6.0 (or higher) and MySQL 8.0.11 (or higher) installed on your machine.
Setting up your Node.js project
First, using the command line, let’s start by creating a directory for our sample application.
$ mkdir myproject $ cd myproject
Create a …
[Read more]