MongoDB and Mongoose work out of the box with JSTime. This guide assumes you’ve already installed MongoDB and are running it as background process/service on your development machine. Follow this guide for details.Documentation Index
Fetch the complete documentation index at: https://docs.awfixer.me/llms.txt
Use this file to discover all available pages before exploring further.
Once MongoDB is running, create a directory and initialize it with
jstime init.
Then add Mongoose as a dependency.
In
schema.ts we’ll declare and export a simple Animal model.
Now from
index.ts we can import Animal, connect to MongoDB, and add some data to our database.
Lets run this with
jstime run.
This is a simple introduction to using Mongoose with TypeScript and JSTime. As you build your application, refer to the official MongoDB and Mongoose sites for complete documentation.