Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
digital-bible-platform
Advanced tools
JavaScript and Node.js client for the Digital Bible Platform [Digital Bible Platform](http://digitalbibleplatform.com/)
JavaScript and Node.js client for the Digital Bible Platform Digital Bible Platform
The Digital Bible Platform is an online API for Bible Text, Audio, and Video. This client module for Node.js provides an easy-to-use set of functions designed to simplify the building of JavaScript applications that use the Digital Bible Platform.
npm install digital-bible-platform
var Client = require( "digital-bible-platform" );
var client = new Client( "your-api-key" );
client.versions( function( err, versions ) {
console.log( versions );
} );
To use the client behind a proxy server, pass an options object to the module constructor that includes the proxy server. For example:
var Client = require("digital-bible-platform");
var client = new Client("your-api-client", { "proxy": "http://localproxy.com" } );
This options
object is the same object used by the request module.
To run integration tests, you'll need to set your API Key as an environment variable.
OSX / Linux
export DBP_API_KEY=your-api-key
Windows
setx DBP_API_KEY "your-api-key"
Note: On Windows, you will need to reopen your command prompt after setting environment variables.
Open Terminal or command prompt, change to the digital-bible-platform client directory, and enter:
npm test
The Digital Bible Platorm Node.js client is licensed under MIT. Refer to license.txt for more information.
FAQs
JavaScript and Node.js client for the Digital Bible Platform [Digital Bible Platform](http://digitalbibleplatform.com/)
The npm package digital-bible-platform receives a total of 6 weekly downloads. As such, digital-bible-platform popularity was classified as not popular.
We found that digital-bible-platform 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.