Note: this example should works with MySQL too but it could be better to use the dedicated code available on https://github.com/stackhero-io/mysqlGettingStarted.
You can find here some examples of Node.js code to send data to a MariaDB server.
These examples are designed to run with a Stackhero for MariaDB. You'll more informations about Stackhero here:
This example will connect to your MariaDB server, create the database stackherotest
and the table users
and fill it with 1000 fake users datas.
-
Clone this repository:
git clone https://github.com/stackhero-io/mariadbGettingStarted && cd mariadbGettingStarted
-
Copy the file
.env-example
to.env
and fill it with your credentials. -
Install dependencies:
npm install
. -
Run the script:
npm run start
.
You can see the script code in the file app.js
and see how it works to use it as an example.