Gathering detailed insights and metrics for docker-composer
Gathering detailed insights and metrics for docker-composer
Gathering detailed insights and metrics for docker-composer
Gathering detailed insights and metrics for docker-composer
npm install docker-composer
Typescript
Module System
Node Version
NPM Version
72.5
Supply Chain
90.8
Quality
80
Maintenance
100
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
34,941
Last Day
9
Last Week
62
Last Month
393
Last Year
6,486
MIT License
9 Stars
638 Commits
8 Forks
3 Watchers
4 Branches
3 Contributors
Updated on May 26, 2025
Minified
Minified + Gzipped
Latest Version
5.2.0
Package Id
docker-composer@5.2.0
Unpacked Size
27.47 kB
Size
6.22 kB
File Count
10
NPM Version
11.3.0
Node Version
23.11.0
Published on
Apr 23, 2025
Cumulative downloads
Total Downloads
Last Day
-50%
9
Compared to previous day
Last Week
82.4%
62
Compared to previous week
Last Month
-29.4%
393
Compared to previous month
Last Year
21.3%
6,486
Compared to previous year
2
7
Generate Docker Compose descriptor from a JSON document.
The reason behind this package is support the Docker Compose descriptor generation from Javascript. You are able to use all Docker Compose keyword to describe your containers and services.
Docker Compose Reference is HERE.
You can find all Release Notes HERE.
1 2 const composer = require('docker-composer'); 3 . 4 const generatedYML = composer.generate(inputJSON);
1{ 2"version" : "3", 3"services" : 4 { 5 "nginx" : { 6 "ports" : [ 7 "80" 8 ], 9 "image" : "nginx:latest" 10 }, 11 "http" : { 12 "ports" : [ 13 "443" 14 ], 15 "image" : "apache:latest" 16 } 17 } 18}
1--- 2 version: "3" 3 services: 4 nginx: 5 ports: 6 - "80" 7 image: "nginx:latest" 8 http: 9 ports: 10 - "443" 11 image: "nginx:latest"
Copyright (c) 2015 Tibor Udvari. Released under the MIT license. See LICENSE for details.
No vulnerabilities found.
Reason
26 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
0 existing vulnerabilities detected
Reason
Found 1/2 approved changesets -- score normalized to 5
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Score
Last Scanned on 2025-05-19
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More