Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
cf-nodejs-client
Advanced tools
This project provides a simple client library to interact with the Cloud Foundry REST API using Node.js. The client provides objects to retrieve information about the following concepts:
Take a look the Tests cases developed with Mocha & Chai to understand some stuff about Cloud Foundry and the usage of this client.
Node.js with Express are a great combination to develop Web applications. If you observe the Sinatra market, you will notice that the community goes in that address. This library could be useful for you to develop a Web Application to interact with a Cloud Foundry Instance.
If you need to interact with a Cloud Foundry platform, install the package in your Node.js development:
npm install cf-nodejs-client --save
Once you have installed the package define in a isolated config file the credentials to operate with the platform:
config.json
{
"endpoint" : "https://api.run.pivotal.io",
"username" : "xxx",
"password" : "yyy"
}
With the credentials defined, create a new file to paste this code to authenticate with the platform.
example.js
"use strict";
var config = require('./config.json');//Load CF configuration
var cloudFoundry = require("cf-nodejs-client").CloudFoundry;
cloudFoundry = new cloudFoundry(config.endpoint);
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
cloudFoundry.getInfo().then(function (result) {
return cloudFoundry.login(result.token_endpoint,config.username,config.password);
}).then(function (result) {
console.log(result);
}).catch(function (reason) {
console.error("Error: " + reason);
});
Save the file and test:
node example.js
If you have question, create an issue.
Juan Antonio
FAQs
A Cloud Foundry Client for Node.js
The npm package cf-nodejs-client receives a total of 2 weekly downloads. As such, cf-nodejs-client popularity was classified as not popular.
We found that cf-nodejs-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.