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}
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.
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.
To update Atlas:
1. run choco upgrade mongodb-atlas
2. run atlas --version to see the version
Complete the following procedure to get started with Atlas.
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():
connect to the DB url, which you should provide in the connectToDatabase(uri)
it tries to modify the database schema
if it doesn’t exist it creates a new one
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.