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.
firebase-apparatus
Advanced tools
Lightweight implementation of firebase-tools as a Node module.
$ npm i firebase-apparatus
or
$ yarn add firebase-apparatus
import { Apparatus } from 'firebase-apparatus';
const apparatus = new Apparatus({
projectId: 'my-firebase-project',
token: 'my-firebase-ci-token'
});
/*
new Apparatus(
ApparatusParameters
): Apparatus
type ApparatusParameters = {
// Firebase project ID
projectId: string,
// Firebase CI token with access to projectId
token: string
};
*/
.authExport()
const users: AuthUser[] = await apparatus.authExport();
/*
apparatus.authExport(
): Promise<AuthUser[]>
type ProviderId =
| 'google.com'
| 'facebook.com'
| 'twitter.com'
| 'github.com';
type ProviderUserInfo = {
providerId: ProviderId,
rawId?: string,
email?: string,
displayName?: string,
photoUrl?: string
};
type AuthUser = {
localId: string,
email?: string,
emailVerified?: boolean,
displayName?: string,
photoUrl?: string,
passwordHash?: string,
salt?: string,
createdAt?: string,
lastSignedInAt?: string,
phoneNumber?: string,
providerUserInfo?: ProviderUserInfo[]
};
*/
.authImport()
// Array of <AuthUser> to import
const users: AuthUser[] = [ { ... } ];
// Optional hash options for password import
const hashOptions: HashOptions = { ... };
await apparatus.authImport(users, hashOptions);
/*
apparatus.authImport(
AuthUser[],
?HashOptions
): Promise<void>
type HashOptions = {
// Hash algorithm used in password for these accounts
hashAlgo?: string,
// Key used in hash algorithm
hashKey?: string,
// Salt separator which will be appended to salt when verifying password. only used by SCRYPT now
saltSeparator?: string,
// Number of rounds for hash calculation
rounds?: number,
// Memory cost for firebase scrypt, or cpu/memory cost for standard scrypt
memCost?: number,
// Parallelization for standard scrypt
parallelization?: number,
// Block size (normally is 8) for standard scrypt
blockSize?: number,
// Derived key length for standard scrypt
dkLen?: number
};
*/
FAQs
Lightweight implementation of firebase-tools as a Node module
The npm package firebase-apparatus receives a total of 6 weekly downloads. As such, firebase-apparatus popularity was classified as not popular.
We found that firebase-apparatus 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.