From 34b69044ec90c7eaaedb86f2982df6a020883b30 Mon Sep 17 00:00:00 2001 From: Yuriy Androsenko Date: Sat, 22 Mar 2025 19:51:07 +0300 Subject: [PATCH 1/2] add node modules --- modules/cosmodb/index.md | 12 ++++++++++++ modules/eventstoredb/index.md | 11 +++++++++++ 2 files changed, 23 insertions(+) diff --git a/modules/cosmodb/index.md b/modules/cosmodb/index.md index 688f97c..7aa4979 100644 --- a/modules/cosmodb/index.md +++ b/modules/cosmodb/index.md @@ -49,6 +49,18 @@ docs: ```bash pip install testcontainers[cosmosdb] ``` + - id: nodejs + url: https://node.testcontainers.org/modules/azurecosmosdb/ + maintainer: core + example: | + ```javascript + const imageName = "mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:vnext-EN20250228"; + const container = await new AzureCosmosDbEmulatorContainer(imageName).start(); + ``` + installation: | + ```bash + npm install @testcontainers/azurecosmosdb --save-dev + ``` description: | Azure Cosmos DB is a fully managed, horizontally scalable, NoSQL and relational database. --- diff --git a/modules/eventstoredb/index.md b/modules/eventstoredb/index.md index 49f2186..2455e5c 100644 --- a/modules/eventstoredb/index.md +++ b/modules/eventstoredb/index.md @@ -17,6 +17,17 @@ docs: ```bash dotnet add package Testcontainers.EventStoreDb ``` + - id: nodejs + url: https://node.testcontainers.org/modules/eventstoredb/ + maintainer: core + example: | + ```javascript + const container = await new EventStoreDBContainer("eventstore/eventstore:24.10").start(); + ``` + installation: | + ```bash + npm install @testcontainers/eventstoredb --save-dev + ``` description: | EventStoreDB is an event sourcing database that stores data in streams of immutable events. --- From e2f429cea623b3849636301fa7857c07a4720d72 Mon Sep 17 00:00:00 2001 From: Yuriy Androsenko Date: Sun, 23 Mar 2025 16:56:19 +0300 Subject: [PATCH 2/2] removed duplicate in cosmosdb --- modules/cosmodb/index.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/modules/cosmodb/index.md b/modules/cosmodb/index.md index b023eb1..34e659e 100644 --- a/modules/cosmodb/index.md +++ b/modules/cosmodb/index.md @@ -62,18 +62,6 @@ docs: ```bash pip install testcontainers[cosmosdb] ``` - - id: nodejs - url: https://node.testcontainers.org/modules/azurecosmosdb/ - maintainer: core - example: | - ```javascript - const imageName = "mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:vnext-EN20250228"; - const container = await new AzureCosmosDbEmulatorContainer(imageName).start(); - ``` - installation: | - ```bash - npm install @testcontainers/azurecosmosdb --save-dev - ``` description: | Azure Cosmos DB is a fully managed, horizontally scalable, NoSQL and relational database. ---