is-cloudfoundry
v0.1.1
Published
Determines if the environment is Cloud Foundry
Downloads
6
Maintainers
Readme
is-cloudfoundry
Determines if the environment is Cloud Foundry
Installation
npm install --save is-cloudfoundry
Usage
var isCF = require('is-cloudfoundry');
if (isCF) {
// Running on Cloud Foundry
}
else {
// Running somewhere else
}