
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
braincloud
Advanced tools
yarn add braincloud
# or
npm install braincloud
NOTE: peer dependency of @react-native-community/async-storage is only needed when used within a React-Native application, see below.
var bc = require("braincloud")
function authenticated(response) {
console.log("Did get Authenticated to profileId:" + response.data.profileId);
var shareable = true;
var replaceIfExists = true;
_bc.brainCloudClient.file.prepareFileUpload("tests","dummyFile",shareable,replaceIfExists,)
}
_bc = new bc.BrainCloudWrapper("_mainWrapper");
secret = "aaaaaaaa-bbbb-0000-cccc-111111111111";
appId = "00000";
console.log("Initializing brainCloud");
_bc.initialize(appId, secret, "1.0.0");
console.log("Authenticating anonymously to brainCloud");
_bc.authenticateAnonymous(authenticated);
React-Native Usage
import { BrainCloudWrapper } from 'braincloud';
_bc = new bc.BrainCloudWrapper("_myApp");
secret = "aaaaaaaa-bbbb-0000-cccc-111111111111";
appId = "00000";
console.log("Initializing brainCloud");
_bc.initialize(appId, secret, "1.0.0");
console.log("Authenticating anonymously to brainCloud");
_bc.authenticateAnonymous(function (response) {
if (response.status === 200) {
console.log("Did get Authenticated to profileId:" + response.data.profileId);
}
});
See https://github.com/react-native-community/react-native-async-storage for additional information on AsyncStorage.
If you plan to run this server side in nodejs, it is possible. But it will fail to build at first because of missing web components. Simply put this into your main code file:
// Set up XMLHttpRequest.
XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
window = {
XMLHttpRequest: XMLHttpRequest
};
XMLHttpRequest.UNSENT = 0;
XMLHttpRequest.OPENED = 1;
XMLHttpRequest.HEADERS_RECEIVED = 2;
XMLHttpRequest.LOADING = 3;
XMLHttpRequest.DONE = 4;
// Set up WebSocket.
WebSocket = require('ws');
// Set up LocalStorage.
LocalStorage = require('node-localstorage/LocalStorage').LocalStorage;
os = require('os');
var configDir = os.homedir() + "/.bciot";
localStorage = new LocalStorage(configDir);
const BC = require('braincloud');
And make sure to have the following NPM dependencies installed:
The file upload works slightly different in this implementation if not used in the web. Instead of using XMLHttpRequest you need to use XMLHttpRequest4Upload. Also the file object passed into uploadFile call needs to be a Read Stream from the nodes fs module.
var fs = require("fs")
...
_bc.brainCloudClient.file.prepareFileUpload("test2", fileName, shareable, replaceIfExists, fileSize, function (result) {
if (result.status == 200) {
var uploadId = result.data.fileDetails.uploadId;
var xhr = new XMLHttpRequest4Upload();
file2 = fs.createReadStream("./someFile.ext");
file2.size = fileSize;
xhr.addEventListener("load", transferComplete);
xhr.addEventListener("error", transferFailed);
console.log("Uploading file with id:" + uploadId + " (size : " + fileSize + " )");
_bc.brainCloudClient.file.uploadFile(xhr, file2, uploadId);
} else {
console.log("Error preparing for upload, " + result.reason_code );
}
}
...
Only load and error listeners are triggered in this implementations.
File upload is not yet supported in React-Native.
Sessions are not maintained across executions of scripts. i.e. Each script must initialy login.
FAQs
brainCloud client for NodeJS
The npm package braincloud receives a total of 117 weekly downloads. As such, braincloud popularity was classified as not popular.
We found that braincloud demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.