
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
firebase-factories
Advanced tools
Define factories for your models and use the factory to save data to your firebase.
factories.define
const factories = require('firebase-factories')({firebase: new Firebase(<my-firebase-root>)})
const UserFactory = factories.define('User', {
// define the root of where this collection lives
root: 'users',
// provide a function that tells the factory how to calculate ids for the
// newly generated users n is a number that gets incremented with every factory
// of this type that gets created
id: (n, options) => {
return `test-user-${id}`
},
// provide a function that returns an object which will be used as the user record
attributes: (n, options) => {
const defaults = {info: {name: `User ${n}`, uid: `test-uid-${n}`}}
if (options.isAdmin) {
defaults.info.admin = true
}
return defaults
},
// return a promise that gets called after the user is saved
// this is useful for setting up other records that need to
// exist in order to look up the user id
afterSave: (n, options, user) => {
return firebase.child(`uids/${user.info.uid}`).set(user.$id)
}
})
Factory.create(overrides = {}, options = {})
method on your factory definition
overrides
is an object that will override the default attributes
from your factory definitionoptions
is an object that will get passed into the attributes
function. See example usage for creating regular users vs. creating admin users.attributes
function in the factory definition.$id
: the id of the object$save
: a function that returns a promise that resolves after the record is saved and the afterSave() callback is completedconst userRegular = UserFactory.create()
const userAdmin = UserFactory.create({}, {isAdmin: true})
const userJane = UserFactory.create({info: {name: 'Jane'}})
Promise.all([
userRegular.$save(),
userAdmin.$save(),
userJane.$save(),
]).then((values) => {
console.log('All the users have been saved')
console.log(userRegular.$id, userRegular.info.name)
console.log(userAdmin.$id, userAdmin.info.name)
console.log(userJane.$id, userJane.info.name)
})
FAQs
Factories for creating test data and saving it to firebase
The npm package firebase-factories receives a total of 0 weekly downloads. As such, firebase-factories popularity was classified as not popular.
We found that firebase-factories 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.