summary

First you can install ATLAS or MongoDB Compass

Angular front

IMPORTANT

When making an angular app:


ng new client --routing --style=css --minimal

don’t forget that in the newer versions it will automatically be a standalone component generation. To follow this tutorial you need to modify it:


ng new client --routing --style=css --minimal --no-standalone

Link to original

Besides that, you can just follow the tutorial as normal. Here are the commands to make it run:

run

run npx ts-node src/server.ts from C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\server> to run the backend.

Run ng s from C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\client> to start the frontend.

Link to original

Trying it for myself.

This time I used the Atlas UI fully, instead of the Atlas CLI.

When setting it up, I can keep following the tutorial till Create an employee interface on the server side, that is where things start to differ

The thing I am going to try and create is a ‘Task Management App’ (Thanks GPT)

Link to original

Mongoose

To do user validation easier, follow the following steps using mongoose:

20.06 Mongoose

read the docs

npm install mongoose --save

Apparently there is an updateOne() method and also a replaceOne() method.

Mongoose TTL

IMPORTANT: MongoDB default stores dates UTC time zone.

const sessionTokenJsonSchema = {
    userId: {
        type: Schema.Types.ObjectId,
        required: true,
        description: "'userId' is required and must be a valid ObjectId",
    },
    expireAt: { type: Date, expires: 60, default: Date.now },
};
 
const sessionTokenSchema = new mongoose.Schema(sessionTokenJsonSchema);
const sessionTokens = mongoose.model('sessionToken', sessionTokenSchema);

The above example will have the sessionTokens created expire after 60 seconds. This means that the tokens will automatically be deleted by mongoDB without a server needing to clean it up.

here are more examples on how to set the { expires: 60}

// expire in 24 hours
schema.index({ prop1: 1 }, { expires: 60*60*24 })
 
// expire in 24 hours
schema.index({ prop1: 1 }, { expires: '24h' })
 
// expire in 1.5 hours
schema.index({ prop1: 1 }, { expires: '1.5h' })
 
// expire in 7 days
schema.index({ prop1: 1 }, { expires: '7d' })

When changing the time of the expiration date, it doesn’t auto update on the db side. So you’ll have to manually go to the “indexes” tab and delete the already existing TTL. The below example works the best for me,

const sessionTokenJsonSchema = {
    userId: {
        type: Schema.Types.ObjectId,
        required: true,
        description: "'userId' is required and must be a valid ObjectId",
    },
    deleted: {
        type: Date,
        default: Date.now,
        index: { expireAfterSeconds: 1 } // mongodb might have 1 minute delay, keep that in mind
    },
};

note that it doesn’t need to be a Date to use TTL, it just removes it after X time, after the value is set to a non-null value, and if you set it back to null in time, it won’t be deleted.

Link to original

Figuring it out

atlas

Apparently I first have to create an MongoDB Atlas cluster. No idea yet what it is, but I’ll need it for connecting the database. Here follow steps:

  1. Install Atlas CLI

    1. I’ll take Chocolatey to do so, here are the steps to install Chocolatey.

        1. Run the following in an administrative CMD window:         @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

    2. run choco install mongodb-atlas in and administrator CMD

    3. When prompted, enter A to confirm installation.

    4. Close and reopen your terminal after the installation to see the changes in your path.

    5. Verify successful Atlas CLI installation:

        1. Run the atlas command from any directory:

            atlas

            The response includes available commands and options for the Atlas CLI.

  1. To update Atlas:

    1. run choco upgrade mongodb-atlas

    2. run atlas --version to see the version

  1. Complete the following procedure to get started with Atlas.

    - just follow these steps (I chose my school mail here)

In the end I got Enter 'atlas cluster watch Cluster86907' to learn when your cluster is available. in my CMD. Looks like I can continue back to the tutorial.

don’t forget to add a gitignore:


node_modules

.env

Create an employee interface on the server side

In my understanding server/src/employee.ts is just the interface, just like I sometimes use in angular. The only thing this is used for is so that we can import this interface to where we need it.

Connect to the database

we just created server/src/database.ts, after reading the code (not the text under the code) it I think it does the following when you run connectToDatabase():

  1. connect to the DB url, which you should provide in the connectToDatabase(uri)

  2. it tries to modify the database schema

  3. if it doesn’t exist it creates a new one

  4. it grabs all employees

I could be wrong.

Edit: I read the text under it, and I still don’t understand it completely, but that’ll come with time.

.env

I just created the server/.env but I am confused why I have @sandbox.jadwj.mongodb.net/meanStackExample in the connection string. It only told me:

Make sure you replace the username and password placeholder with your credentials.

It didn’t tell me:

Make sure you replace the username and password placeholder, and the website url with your credentials.

I guess I’ll find this out later, but right now it confuses me.

npx ts-node src/server.ts

When I ran npx ts-node src/server.ts i got the following:


PS C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\server> npx ts-node src/server.ts

MongoServerError: bad auth : Authentication failed.

    at Connection.onMessage (C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\server\node_modules\mongodb\src\cmap\connection.ts:421:18)

    at MessageStream.<anonymous> (C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\server\node_modules\mongodb\src\cmap\connection.ts:251:56)

    at MessageStream.emit (node:events:519:28)

    at MessageStream.emit (node:domain:488:12)

    at processIncomingData (C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\server\node_modules\mongodb\src\cmap\message_stream.ts:179:12)

    at MessageStream._write (C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\server\node_modules\mongodb\src\cmap\message_stream.ts:68:5)

    at writeOrBuffer (node:internal/streams/writable:564:12)

    at _write (node:internal/streams/writable:493:10)

    at MessageStream.Writable.write (node:internal/streams/writable:502:10)

    at TLSSocket.ondata (node:internal/streams/readable:1007:22) {

  ok: 0,

  code: 8000,

  codeName: 'AtlasError',

  connectionGeneration: 0,

  [Symbol(errorLabels)]: Set(2) { 'HandshakeError', 'ResetPool' }

}

Ohno.

Solved the above issue

When using Atlas, make sure you are using the DB password, and not your account password.

Build the RESTful API

Looks pretty much understandable. I have worked with asp.net before and this employee.routes.ts looks like an average controller.

Building the client-side Angular web application

Never used bootstrap before lol

IMPORTANT

When making an angular app:


ng new client --routing --style=css --minimal

don’t forget that in the newer versions it will automatically be a standalone component generation. To follow this tutorial you need to modify it:


ng new client --routing --style=css --minimal --no-standalone

run

run npx ts-node src/server.ts from C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\server> to run the backend.

Run ng s from C:\Users\Gebruiker\Documents\code\MEAN-stack-tutorial\client> to start the frontend.

Trying it for myself.

This time I used the Atlas UI fully, instead of the Atlas CLI.

When setting it up, I can keep following the tutorial till Create an employee interface on the server side, that is where things start to differ

The thing I am going to try and create is a ‘Task Management App’ (Thanks GPT)

Development structure

 - To keep it clean, I’ll sort the interfaces and controllers together in their own folders.

 - It’s cleaner to make task.interface.ts than task.ts like the tutorial does.

Notes

 - server.ts can be copied from the tutorial without changes  - Might have to look into the node version when setting things up?

info

 
node --version
 

This gives me v21.6.0