Gathering detailed insights and metrics for @adobe/asset-compute-devtool
Gathering detailed insights and metrics for @adobe/asset-compute-devtool
npm install @adobe/asset-compute-devtool
Typescript
Module System
Node Version
NPM Version
JavaScript (98.73%)
HTML (1.01%)
Batchfile (0.17%)
CSS (0.1%)
Total Downloads
85,574
Last Day
23
Last Week
64
Last Month
431
Last Year
7,295
1 Stars
102 Commits
5 Forks
24 Watching
23 Branches
236 Contributors
Latest Version
3.0.0
Package Id
@adobe/asset-compute-devtool@3.0.0
Unpacked Size
18.18 MB
Size
3.48 MB
File Count
447
NPM Version
7.8.0
Node Version
12.19.1
Cumulative downloads
Total Downloads
Last day
155.6%
23
Compared to previous day
Last week
-15.8%
64
Compared to previous week
Last month
33.4%
431
Compared to previous month
Last year
-45.9%
7,295
Compared to previous year
19
This is a library for the developer tool for exploring and testing the Adobe Asset Compute service.
$ npm install @adobe/asset-compute-devtool
The Devtool Server has a simple api for starting and stopping the server:
1const { DevtoolServer } = require('@adobe/asset-compute-devtool'); 2 3const devtool = new DevtoolServer(); 4await devtool.run(); // starts server and opens a browser 5// ... use developer tool 6await devtool.stop(); // stop server
Using a preferred port:
1const { DevtoolServer } = require('@adobe/asset-compute-devtool'); 2 3const devtool = new DevtoolServer(); 4await devtool.run(8080); // starts server and binds it to port 8080 or the closest port to 8080 if it is already in use 5console.log(devtool.port); // should be 8080 unless that port was already in use 6// ... use developer tool 7await devtool.stop(); // stop server
Using start function to set up server:
1const { start } = require('@adobe/asset-compute-devtool'); 2 3const devtool = await start(); // create DevtoolServer instance and run server 4// ... use developer tool 5await devtool.stop();
See adobe/aio-cli-plugin-asset-compute for an example usage.
Refer to Asset Compute Development Tool for more information
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 5/7 approved changesets -- score normalized to 7
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
85 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-01-27
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