Compare commits
No commits in common. "master" and "v1.0.6" have entirely different histories.
@ -1,66 +0,0 @@
|
|||||||
name: Default (not tags)
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags-ignore:
|
|
||||||
- '**'
|
|
||||||
|
|
||||||
env:
|
|
||||||
IMAGE: code.foss.global/host.today/ht-docker-node:npmci
|
|
||||||
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@/${{gitea.repository}}.git
|
|
||||||
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
|
||||||
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
|
||||||
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
|
||||||
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
security:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
continue-on-error: true
|
|
||||||
container:
|
|
||||||
image: ${{ env.IMAGE }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Install pnpm and npmci
|
|
||||||
run: |
|
|
||||||
pnpm install -g pnpm
|
|
||||||
pnpm install -g @ship.zone/npmci
|
|
||||||
|
|
||||||
- name: Run npm prepare
|
|
||||||
run: npmci npm prepare
|
|
||||||
|
|
||||||
- name: Audit production dependencies
|
|
||||||
run: |
|
|
||||||
npmci command npm config set registry https://registry.npmjs.org
|
|
||||||
npmci command pnpm audit --audit-level=high --prod
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Audit development dependencies
|
|
||||||
run: |
|
|
||||||
npmci command npm config set registry https://registry.npmjs.org
|
|
||||||
npmci command pnpm audit --audit-level=high --dev
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
test:
|
|
||||||
if: ${{ always() }}
|
|
||||||
needs: security
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ${{ env.IMAGE }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Test stable
|
|
||||||
run: |
|
|
||||||
npmci node install stable
|
|
||||||
npmci npm install
|
|
||||||
npmci npm test
|
|
||||||
|
|
||||||
- name: Test build
|
|
||||||
run: |
|
|
||||||
npmci node install stable
|
|
||||||
npmci npm install
|
|
||||||
npmci npm build
|
|
@ -1,124 +0,0 @@
|
|||||||
name: Default (tags)
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
|
|
||||||
env:
|
|
||||||
IMAGE: code.foss.global/host.today/ht-docker-node:npmci
|
|
||||||
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@/${{gitea.repository}}.git
|
|
||||||
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
|
||||||
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
|
||||||
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
|
||||||
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
security:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
continue-on-error: true
|
|
||||||
container:
|
|
||||||
image: ${{ env.IMAGE }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Prepare
|
|
||||||
run: |
|
|
||||||
pnpm install -g pnpm
|
|
||||||
pnpm install -g @ship.zone/npmci
|
|
||||||
npmci npm prepare
|
|
||||||
|
|
||||||
- name: Audit production dependencies
|
|
||||||
run: |
|
|
||||||
npmci command npm config set registry https://registry.npmjs.org
|
|
||||||
npmci command pnpm audit --audit-level=high --prod
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Audit development dependencies
|
|
||||||
run: |
|
|
||||||
npmci command npm config set registry https://registry.npmjs.org
|
|
||||||
npmci command pnpm audit --audit-level=high --dev
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
test:
|
|
||||||
if: ${{ always() }}
|
|
||||||
needs: security
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ${{ env.IMAGE }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Prepare
|
|
||||||
run: |
|
|
||||||
pnpm install -g pnpm
|
|
||||||
pnpm install -g @ship.zone/npmci
|
|
||||||
npmci npm prepare
|
|
||||||
|
|
||||||
- name: Test stable
|
|
||||||
run: |
|
|
||||||
npmci node install stable
|
|
||||||
npmci npm install
|
|
||||||
npmci npm test
|
|
||||||
|
|
||||||
- name: Test build
|
|
||||||
run: |
|
|
||||||
npmci node install stable
|
|
||||||
npmci npm install
|
|
||||||
npmci npm build
|
|
||||||
|
|
||||||
release:
|
|
||||||
needs: test
|
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ${{ env.IMAGE }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Prepare
|
|
||||||
run: |
|
|
||||||
pnpm install -g pnpm
|
|
||||||
pnpm install -g @ship.zone/npmci
|
|
||||||
npmci npm prepare
|
|
||||||
|
|
||||||
- name: Release
|
|
||||||
run: |
|
|
||||||
npmci node install stable
|
|
||||||
npmci npm publish
|
|
||||||
|
|
||||||
metadata:
|
|
||||||
needs: test
|
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ${{ env.IMAGE }}
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Prepare
|
|
||||||
run: |
|
|
||||||
pnpm install -g pnpm
|
|
||||||
pnpm install -g @ship.zone/npmci
|
|
||||||
npmci npm prepare
|
|
||||||
|
|
||||||
- name: Code quality
|
|
||||||
run: |
|
|
||||||
npmci command npm install -g typescript
|
|
||||||
npmci npm install
|
|
||||||
|
|
||||||
- name: Trigger
|
|
||||||
run: npmci trigger
|
|
||||||
|
|
||||||
- name: Build docs and upload artifacts
|
|
||||||
run: |
|
|
||||||
npmci node install stable
|
|
||||||
npmci npm install
|
|
||||||
pnpm install -g @git.zone/tsdoc
|
|
||||||
npmci command tsdoc
|
|
||||||
continue-on-error: true
|
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,6 +3,7 @@
|
|||||||
# artifacts
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
public/
|
public/
|
||||||
|
pages/
|
||||||
|
|
||||||
# installs
|
# installs
|
||||||
node_modules/
|
node_modules/
|
||||||
@ -16,4 +17,4 @@ node_modules/
|
|||||||
dist/
|
dist/
|
||||||
dist_*/
|
dist_*/
|
||||||
|
|
||||||
#------# custom
|
# custom
|
141
.gitlab-ci.yml
Normal file
141
.gitlab-ci.yml
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
# gitzone ci_default
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- .npmci_cache/
|
||||||
|
key: '$CI_BUILD_STAGE'
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- security
|
||||||
|
- test
|
||||||
|
- release
|
||||||
|
- metadata
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- npm install -g @shipzone/npmci
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# security stage
|
||||||
|
# ====================
|
||||||
|
mirror:
|
||||||
|
stage: security
|
||||||
|
script:
|
||||||
|
- npmci git mirror
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
|
auditProductionDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
stage: security
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci command npm install --production --ignore-scripts
|
||||||
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
- npmci command npm audit --audit-level=high --only=prod --production
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
allow_failure: true
|
||||||
|
|
||||||
|
auditDevDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
stage: security
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci command npm install --ignore-scripts
|
||||||
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
- npmci command npm audit --audit-level=high --only=dev
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
allow_failure: true
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# test stage
|
||||||
|
# ====================
|
||||||
|
|
||||||
|
testStable:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm install
|
||||||
|
- npmci npm test
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
|
||||||
|
testBuild:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command npm run build
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
|
||||||
|
release:
|
||||||
|
stage: release
|
||||||
|
script:
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm publish
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# metadata stage
|
||||||
|
# ====================
|
||||||
|
codequality:
|
||||||
|
stage: metadata
|
||||||
|
allow_failure: true
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
script:
|
||||||
|
- npmci command npm install -g tslint typescript
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- priv
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
stage: metadata
|
||||||
|
script:
|
||||||
|
- npmci trigger
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
|
pages:
|
||||||
|
stage: metadata
|
||||||
|
script:
|
||||||
|
- npmci node install lts
|
||||||
|
- npmci command npm install -g @gitzone/tsdoc
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command tsdoc
|
||||||
|
tags:
|
||||||
|
- lossless
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
artifacts:
|
||||||
|
expire_in: 1 week
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
allow_failure: true
|
121
changelog.md
121
changelog.md
@ -1,121 +0,0 @@
|
|||||||
# Changelog
|
|
||||||
|
|
||||||
## 2025-04-06 - 2.0.12 - fix(ci/config)
|
|
||||||
Update CI workflow environment variables, refine package metadata, and improve configuration settings
|
|
||||||
|
|
||||||
- Updated workflow YAML files to use new IMAGE and npmci package names
|
|
||||||
- Adjusted package.json homepage, added bugs field and pnpm overrides
|
|
||||||
- Minor formatting improvements in readme.md and .gitignore
|
|
||||||
- Enhanced tsconfig with baseUrl and paths for improved module resolution
|
|
||||||
|
|
||||||
## 2025-04-06 - 2.0.11 - fix(dependencies)
|
|
||||||
Update dependency names and versions in CI workflows and package configuration
|
|
||||||
|
|
||||||
- Rename devDependency packages from '@gitzone/*' to '@git.zone/*' for consistency
|
|
||||||
- Bump '@types/node' from '^20.4.8' to '^22.14.0'
|
|
||||||
- Upgrade 'mongodb-memory-server' from '^8.14.0' to '^10.1.4'
|
|
||||||
- Add 'packageManager' field in package.json
|
|
||||||
- Introduce pnpm-workspace.yaml with 'onlyBuiltDependencies' configuration
|
|
||||||
|
|
||||||
## 2024-05-29 - 2.0.10 - misc
|
|
||||||
Various updates to project configuration and documentation.
|
|
||||||
|
|
||||||
- update description
|
|
||||||
- update tsconfig
|
|
||||||
- update npmextra.json: githost (applied on three occasions)
|
|
||||||
|
|
||||||
## 2023-08-08 - 2.0.9 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2023-08-08 - 2.0.8 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2023-08-08 - 2.0.7 - core & org
|
|
||||||
Combined changes for core stability and organization improvements.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
- switch to new org scheme (recorded twice)
|
|
||||||
|
|
||||||
## 2022-06-08 - 2.0.6 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2022-06-08 - 2.0.5 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2022-06-06 - 2.0.4 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2022-06-06 - 2.0.3 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2022-06-03 - 2.0.2 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2022-05-19 - 2.0.1 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2022-05-18 - 2.0.0 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2022-05-17 - 1.0.9 - core
|
|
||||||
Breaking change for module format.
|
|
||||||
|
|
||||||
- BREAKING CHANGE(core): switch to esm
|
|
||||||
|
|
||||||
## 2022-05-17 - 1.0.8 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2021-12-21 - 1.0.7 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2021-12-20 - 1.0.6 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2021-12-20 - 1.0.5 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2021-12-20 - 1.0.4 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2021-12-20 - 1.0.3 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
||||||
|
|
||||||
## 2021-12-20 - 1.0.2 - no notable changes
|
|
||||||
These version bumps did not include additional modifications.
|
|
||||||
|
|
||||||
- version update only
|
|
||||||
|
|
||||||
## 2021-12-20 - 1.0.1 - core
|
|
||||||
Core fix.
|
|
||||||
|
|
||||||
- fix(core): update
|
|
@ -2,29 +2,17 @@
|
|||||||
"gitzone": {
|
"gitzone": {
|
||||||
"projectType": "npm",
|
"projectType": "npm",
|
||||||
"module": {
|
"module": {
|
||||||
"githost": "code.foss.global",
|
"githost": "gitlab.com",
|
||||||
"gitscope": "push.rocks",
|
"gitscope": "pushrocks",
|
||||||
"gitrepo": "smartmongo",
|
"gitrepo": "smartmongo",
|
||||||
"description": "A module for creating and managing a local MongoDB instance for testing purposes.",
|
"shortDescription": "create a local mongodb for testing",
|
||||||
"npmPackagename": "@push.rocks/smartmongo",
|
"npmPackagename": "@pushrocks/smartmongo",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"projectDomain": "push.rocks",
|
"projectDomain": "push.rocks"
|
||||||
"keywords": [
|
|
||||||
"mongodb",
|
|
||||||
"testing",
|
|
||||||
"local database",
|
|
||||||
"replica set",
|
|
||||||
"memory server",
|
|
||||||
"database management",
|
|
||||||
"typescript"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": [],
|
"npmGlobalTools": [],
|
||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
},
|
|
||||||
"tsdoc": {
|
|
||||||
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
27850
package-lock.json
generated
Normal file
27850
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
54
package.json
54
package.json
@ -1,32 +1,29 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartmongo",
|
"name": "@pushrocks/smartmongo",
|
||||||
"version": "2.0.12",
|
"version": "1.0.6",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A module for creating and managing a local MongoDB instance for testing purposes.",
|
"description": "create a local mongodb for testing",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist_ts/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
"type": "module",
|
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --web)",
|
"test": "(tstest test/ --web)",
|
||||||
"build": "(tsbuild --web --allowimplicitany)",
|
"build": "(tsbuild --web)"
|
||||||
"buildDocs": "tsdoc"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.66",
|
"@gitzone/tsbuild": "^2.1.25",
|
||||||
"@git.zone/tsbundle": "^2.0.8",
|
"@gitzone/tsbundle": "^1.0.78",
|
||||||
"@git.zone/tsrun": "^1.2.44",
|
"@gitzone/tstest": "^1.0.44",
|
||||||
"@git.zone/tstest": "^1.0.77",
|
"@pushrocks/tapbundle": "^3.2.9",
|
||||||
"@push.rocks/tapbundle": "^5.0.12",
|
"@types/node": "^14.11.2",
|
||||||
"@types/node": "^22.14.0"
|
"tslint": "^6.1.3",
|
||||||
|
"tslint-config-prettier": "^1.15.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@push.rocks/mongodump": "^1.0.7",
|
"@pushrocks/smartdata": "^4.0.27",
|
||||||
"@push.rocks/smartdata": "^5.0.23",
|
"@pushrocks/smartpromise": "^3.1.6",
|
||||||
"@push.rocks/smartpath": "^5.0.11",
|
"mongodb-memory-server": "^8.0.4"
|
||||||
"@push.rocks/smartpromise": "^4.0.3",
|
|
||||||
"mongodb-memory-server": "^10.1.4"
|
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 1 chrome versions"
|
"last 1 chrome versions"
|
||||||
@ -42,26 +39,5 @@
|
|||||||
"cli.js",
|
"cli.js",
|
||||||
"npmextra.json",
|
"npmextra.json",
|
||||||
"readme.md"
|
"readme.md"
|
||||||
],
|
]
|
||||||
"keywords": [
|
|
||||||
"mongodb",
|
|
||||||
"testing",
|
|
||||||
"local database",
|
|
||||||
"replica set",
|
|
||||||
"memory server",
|
|
||||||
"database management",
|
|
||||||
"typescript"
|
|
||||||
],
|
|
||||||
"homepage": "https://code.foss.global/push.rocks/smartmongo#readme",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://code.foss.global/push.rocks/smartmongo.git"
|
|
||||||
},
|
|
||||||
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6",
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://code.foss.global/push.rocks/smartmongo/issues"
|
|
||||||
},
|
|
||||||
"pnpm": {
|
|
||||||
"overrides": {}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
9967
pnpm-lock.yaml
generated
9967
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,4 +0,0 @@
|
|||||||
onlyBuiltDependencies:
|
|
||||||
- esbuild
|
|
||||||
- mongodb-memory-server
|
|
||||||
- puppeteer
|
|
@ -1 +0,0 @@
|
|||||||
|
|
119
readme.md
119
readme.md
@ -1,104 +1,39 @@
|
|||||||
# @push.rocks/smartmongo
|
# @pushrocks/smartmongo
|
||||||
|
|
||||||
create a local mongodb for testing
|
create a local mongodb for testing
|
||||||
|
|
||||||
## Install
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartmongo)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartmongo)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartmongo)
|
||||||
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartmongo/)
|
||||||
|
|
||||||
To start using @push.rocks/smartmongo in your project, you first need to install it via npm. You can do this by running the following command in your terminal:
|
## Status for master
|
||||||
|
|
||||||
```bash
|
Status Category | Status Badge
|
||||||
npm install @push.rocks/smartmongo --save-dev
|
-- | --
|
||||||
```
|
GitLab Pipelines | [](https://lossless.cloud)
|
||||||
|
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||||
This will add `@push.rocks/smartmongo` as a development dependency to your project because it's typically used for testing purposes.
|
npm | [](https://lossless.cloud)
|
||||||
|
Snyk | [](https://lossless.cloud)
|
||||||
|
TypeScript Support | [](https://lossless.cloud)
|
||||||
|
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
Code Style | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||||
|
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||||
|
Platform support | [](https://lossless.cloud) [](https://lossless.cloud)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
The `@push.rocks/smartmongo` package provides a convenient way to spin up a local MongoDB instance, primarily for testing purposes. It's designed to simplify the process of configuring and managing a MongoDB replica set during development or in CI/CD pipelines. Below, we present a comprehensive guide on how to utilize the full feature set of this module, employing ESM syntax and TypeScript.
|
Use TypeScript for best in class intellisense
|
||||||
|
|
||||||
### Setting Up
|
## Contribution
|
||||||
|
|
||||||
To get started, you must first import the `SmartMongo` class from the package. This class is responsible for handling the MongoDB instances.
|
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||||
|
|
||||||
```typescript
|
For further information read the linked docs at the top of this readme.
|
||||||
import { SmartMongo } from '@push.rocks/smartmongo';
|
|
||||||
```
|
|
||||||
|
|
||||||
### Creating and Starting a MongoDB Instance
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
With `SmartMongo`, you can easily create and start a MongoDB replica set. You can specify the number of replica instances; however, if not specified, it defaults to 1.
|
[](https://maintainedby.lossless.com)
|
||||||
|
|
||||||
```typescript
|
|
||||||
async function setupMongoDB() {
|
|
||||||
const smartMongoInstance = await SmartMongo.createAndStart(1); // Number of replicas is optional
|
|
||||||
return smartMongoInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
const myDbInstance = await setupMongoDB();
|
|
||||||
```
|
|
||||||
|
|
||||||
After invoking `createAndStart`, an instance of MongoDB is spun up and is ready for use. The `createAndStart` function returns a `SmartMongo` instance which can be interacted with for further operations.
|
|
||||||
|
|
||||||
### Accessing MongoDB Connection Information
|
|
||||||
|
|
||||||
After instantiation, you might want to connect your application or test suite to the MongoDB instance. The `getMongoDescriptor` method facilitates this by providing essential connection details.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const mongoDescriptor = await myDbInstance.getMongoDescriptor();
|
|
||||||
console.log(mongoDescriptor.mongoDbUrl); // Use this URL to connect with Mongoose or MongoDB clients.
|
|
||||||
```
|
|
||||||
|
|
||||||
### Stopping and Cleaning Up
|
|
||||||
|
|
||||||
Once your tests have completed or you're done using the MongoDB instance, it’s crucial to properly stop and clean up the resources. `@push.rocks/smartmongo` provides two methods for this purpose:
|
|
||||||
|
|
||||||
1. **stop()**: Stops the MongoDB instance without persisting any data.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
await myDbInstance.stop();
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **stopAndDumpToDir(dirPath)**: Stops the MongoDB instance and persists the data to the specified directory. This is useful if you need to examine the data post-test or reuse it in subsequent runs.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
await myDbInstance.stopAndDumpToDir('./path/to/dump');
|
|
||||||
```
|
|
||||||
|
|
||||||
### Advanced Usage
|
|
||||||
|
|
||||||
`@push.rocks/smartmongo` also provides advanced features for dumping the database and configuring MongoDB replica sets. These features can be particularly useful for complex testing scenarios or when specific MongoDB behaviors need to be emulated.
|
|
||||||
|
|
||||||
#### Dumping Data
|
|
||||||
|
|
||||||
To dump the MongoDB data for inspection or backup purposes, use the `stopAndDumpToDir` method. This method optionally takes a function to customize the naming scheme of the dumped files based on the document content.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
await myDbInstance.stopAndDumpToDir('./path/to/dump', (doc) => {
|
|
||||||
return `customNameBasedOnDoc-${doc._id}.bson`;
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
Using `@push.rocks/smartmongo` significantly simplifies the process of managing MongoDB instances for local testing environments. It abstracts away the complexity of starting, operating, and tearing down MongoDB replica sets, allowing developers to focus on building and testing their applications.
|
|
||||||
|
|
||||||
### Conclusion
|
|
||||||
|
|
||||||
`@push.rocks/smartmongo` serves as a powerful tool in a developer's arsenal for efficiently configuring, running, and managing MongoDB instances in testing scenarios. By following the above guide, developers can leverage MongoDB in their projects with minimal setup and gain valuable insights into their applications' data interactions in a controlled and reproducible environment.
|
|
||||||
|
|
||||||
## License and Legal Information
|
|
||||||
|
|
||||||
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
|
|
||||||
|
|
||||||
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
### Trademarks
|
|
||||||
|
|
||||||
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
|
|
||||||
|
|
||||||
### Company Information
|
|
||||||
|
|
||||||
Task Venture Capital GmbH
|
|
||||||
Registered at District court Bremen HRB 35230 HB, Germany
|
|
||||||
|
|
||||||
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
|
||||||
|
|
||||||
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
|
|
||||||
|
10
test/test.ts
10
test/test.ts
@ -1,14 +1,14 @@
|
|||||||
import { expect, tap } from '@push.rocks/tapbundle';
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||||||
import * as smartmongo from '../ts/index.js';
|
import * as smartmongo from '../ts/index';
|
||||||
|
|
||||||
let smartmongoInstance: smartmongo.SmartMongo;
|
let smartmongoInstance: smartmongo.SmartMongo;
|
||||||
|
|
||||||
tap.test('should create a mongo instance', async () => {
|
tap.test('should create a mongo instance', async () => {
|
||||||
smartmongoInstance = await smartmongo.SmartMongo.createAndStart();
|
smartmongoInstance = await smartmongo.SmartMongo.createAndInit();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should stop the instance', async () => {
|
tap.test('should stop the instance', async () => {
|
||||||
await smartmongoInstance.stopAndDumpToDir('.nogit/');
|
await smartmongoInstance.stop();
|
||||||
});
|
})
|
||||||
|
|
||||||
tap.start();
|
tap.start();
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
/**
|
|
||||||
* autocreated commitinfo by @push.rocks/commitinfo
|
|
||||||
*/
|
|
||||||
export const commitinfo = {
|
|
||||||
name: '@push.rocks/smartmongo',
|
|
||||||
version: '2.0.12',
|
|
||||||
description: 'A module for creating and managing a local MongoDB instance for testing purposes.'
|
|
||||||
}
|
|
66
ts/index.ts
66
ts/index.ts
@ -1,71 +1,35 @@
|
|||||||
import { commitinfo } from './00_commitinfo_data.js';
|
import * as plugins from './smartmongo.plugins';
|
||||||
import * as plugins from './smartmongo.plugins.js';
|
|
||||||
|
|
||||||
export class SmartMongo {
|
export class SmartMongo {
|
||||||
// STATIC
|
// STATIC
|
||||||
public static async createAndStart(replCountArg: number = 1) {
|
public static async createAndStart() {
|
||||||
const smartMongoInstance = new SmartMongo();
|
const smartMongoInstance = new SmartMongo();
|
||||||
await smartMongoInstance.start(replCountArg);
|
await smartMongoInstance.start();
|
||||||
return smartMongoInstance;
|
return smartMongoInstance;
|
||||||
}
|
}
|
||||||
|
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
private _readyDeferred = plugins.smartpromise.defer();
|
private _readyDeferred = plugins.smartpromise.defer();
|
||||||
public readyPromise = this._readyDeferred.promise;
|
public readyPromise = this._readyDeferred.promise;
|
||||||
public mongoReplicaSet: plugins.mongoPlugin.MongoMemoryReplSet;
|
public mongod: plugins.mongoPlugin.MongoMemoryServer;
|
||||||
|
|
||||||
constructor() {}
|
constructor() {
|
||||||
|
}
|
||||||
public async start(countArg: number = 1) {
|
|
||||||
this.mongoReplicaSet = await plugins.mongoPlugin.MongoMemoryReplSet.create({
|
public async start() {
|
||||||
replSet: { count: countArg },
|
this.mongod = await plugins.mongoPlugin.MongoMemoryServer.create();
|
||||||
instanceOpts: [
|
this._readyDeferred.resolve();
|
||||||
{
|
console.log('mongod started');
|
||||||
storageEngine: 'wiredTiger',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
});
|
|
||||||
this._readyDeferred.resolve();
|
|
||||||
console.log(`mongoReplicaSet with ${countArg} replicas started.`);
|
|
||||||
console.log(`@pushrocks/smartmongo version ${commitinfo.version}`);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* returns a mongo descriptor for modules like
|
|
||||||
* @pushrocks/smartfile.
|
|
||||||
*/
|
|
||||||
public async getMongoDescriptor(): Promise<plugins.smartdata.IMongoDescriptor> {
|
public async getMongoDescriptor(): Promise<plugins.smartdata.IMongoDescriptor> {
|
||||||
await this.readyPromise;
|
await this.readyPromise;
|
||||||
return {
|
return {
|
||||||
mongoDbName: `smartmongo_testdatabase`,
|
mongoDbUrl: this.mongod.getUri(),
|
||||||
mongoDbUrl: this.mongoReplicaSet.getUri(),
|
}
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* stops the smartmongo instance
|
|
||||||
* and cleans up after itself
|
|
||||||
*/
|
|
||||||
public async stop() {
|
public async stop() {
|
||||||
await this.mongoReplicaSet.stop();
|
this.mongod.stop();
|
||||||
await this.mongoReplicaSet.cleanup();
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
/**
|
|
||||||
* like stop() but allows you to actually store
|
|
||||||
* the database on disk
|
|
||||||
*/
|
|
||||||
public async stopAndDumpToDir(
|
|
||||||
dirArg: string,
|
|
||||||
nameFunctionArg?: (doc: any) => string,
|
|
||||||
emptyDirArg = true,
|
|
||||||
) {
|
|
||||||
const mongodumpInstance = new plugins.mongodump.MongoDump();
|
|
||||||
const mongodumpTarget = await mongodumpInstance.addMongoTargetByMongoDescriptor(
|
|
||||||
await this.getMongoDescriptor(),
|
|
||||||
);
|
|
||||||
await mongodumpTarget.dumpAllCollectionsToDir(dirArg, nameFunctionArg, emptyDirArg);
|
|
||||||
await mongodumpInstance.stop();
|
|
||||||
await this.stop();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,10 +1,11 @@
|
|||||||
// @pushrocks scope
|
// @pushrocks scope
|
||||||
import * as mongodump from '@push.rocks/mongodump';
|
import * as smartdata from '@pushrocks/smartdata';
|
||||||
import * as smartdata from '@push.rocks/smartdata';
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
import * as smartpath from '@push.rocks/smartpath';
|
|
||||||
import * as smartpromise from '@push.rocks/smartpromise';
|
|
||||||
|
|
||||||
export { mongodump, smartdata, smartpath, smartpromise };
|
export {
|
||||||
|
smartdata,
|
||||||
|
smartpromise,
|
||||||
|
}
|
||||||
|
|
||||||
// thirdparty
|
// thirdparty
|
||||||
import * as mongoPlugin from 'mongodb-memory-server';
|
import * as mongoPlugin from 'mongodb-memory-server';
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"experimentalDecorators": true,
|
|
||||||
"useDefineForClassFields": false,
|
|
||||||
"target": "ES2022",
|
|
||||||
"module": "NodeNext",
|
|
||||||
"moduleResolution": "NodeNext",
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"verbatimModuleSyntax": true,
|
|
||||||
"baseUrl": ".",
|
|
||||||
"paths": {}
|
|
||||||
},
|
|
||||||
"exclude": [
|
|
||||||
"dist_*/**/*.d.ts"
|
|
||||||
]
|
|
||||||
}
|
|
17
tslint.json
Normal file
17
tslint.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
||||||
|
"rules": {
|
||||||
|
"semicolon": [true, "always"],
|
||||||
|
"no-console": false,
|
||||||
|
"ordered-imports": false,
|
||||||
|
"object-literal-sort-keys": false,
|
||||||
|
"member-ordering": {
|
||||||
|
"options":{
|
||||||
|
"order": [
|
||||||
|
"static-method"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultSeverity": "warning"
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user