Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
nscale-aws-analyzer
Advanced tools
Analyze your AWS deployment done by nscale.
npm install nscale-aws-analyzer -g
nscale-aws-analyzer ./config.js
{
"mcollina": {
"name": "mcollina status on 2014-06-09T16:48:50.602Z",
"namespace": "mcollina",
"id": "eef0a0a0-eff5-11e3-aeca-21cba7b24b1c",
"containerDefinitions": [
{
"id": "ami-fb8e9292",
"type": "ami",
"specific": {
"notManaged": true
}
}
],
"topology": {
"containers": {
"instance1": {
"id": "instance1",
"specific": {
"imageId": "ami-fb8e9292",
"instanceId": "i-f2bbc5a1",
"publicIpAddress": "54.198.3.251",
"privateIpAddress": "10.185.235.8"
}
},
"instance2": {
"id": "instance2",
"specific": {
"imageId": "ami-fb8e9292",
"instanceId": "i-cea2dc9d",
"publicIpAddress": "184.73.96.113",
"privateIpAddress": "10.155.178.230"
}
}
}
}
}
}
The config.js
file is the very same of aws-sdk.
For embedded usage see analyze.js file.
var fs = require('fs')
, configFile = process.argv[2]
, analyze = require('./')
, AWS = require('aws-sdk')
, config
if (!configFile) {
console.log('Missing config')
process.exit(-1)
}
try {
AWS.config.loadFromPath(configFile)
} catch(err) {
console.log(err)
console.log('unable to read', configFile)
process.exit(-1)
}
analyze(function(err, status) {
if (err) {
console.log(err)
process.exit(1)
}
console.log(JSON.stringify(status, null, 2))
})
Each AMI and instance must be tagged with:
nfd-id
: the id on NFDnfd-namespace
: the namespace on NFDNon-tagged AMI will be added with notManaged: true
in their specific
property.
Each container must have the name in this pattern:
nfd-<namespace>-<id>
.
Each image must be tagged with this pattern:
nfd:<namespace>-<id>
.
FAQs
Analyze your AWS deployment!
The npm package nscale-aws-analyzer receives a total of 5 weekly downloads. As such, nscale-aws-analyzer popularity was classified as not popular.
We found that nscale-aws-analyzer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.