Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@eduzz/apps-toolbar
Advanced tools
Toolbar cross-application
In Browser
(function (d, l, c) {
var s = d.createElement('script');
s.async = true;
s.src = l;
s.onload = c;
d.body.append(s);
})(document, 'https://unpkg.com/@eduzz/apps-toolbar@^0.1.0/build/widget.js', function () {
var toolbar = window.EduzzAppsToolbar({
application: 'nutror',
//You can set the user in the initial config
accessKey: '123',
eduzzUserId: 1,
eduzzUserEmail: 'daniel.prado@eduzz.com'
});
// Or later
toolbar.setUser('accessKey',1, 'daniel.prado@eduzz.com');
toolbar.setUser(null); // hide
});
Via npm
import '@eduzz/apps-toolbar';
const toolbar = EduzzAppsToolbar({
application: 'nutror'
});
toolbar.setUser('accessKey',1, 'daniel.prado@eduzz.com');
toolbar.setUser(null); // hide
Complete example:
// eduzzToolbar.ts <~ create in your applocation
import { IUser } from 'interfaces/models/user';
import logService from 'services/log';
const promiseToolbar = import('@eduzz/apps-toolbar').then(() => {
/*global EduzzAppsToolbar*/
return EduzzAppsToolbar({
application: 'nutror'
});
}).catch(err => logService.handleError(err));
export async function setUser(user: IUser) {
const toolbar = await promiseToolbar;
if (!toolbar) return;
toolbar.setUser(user.hash, user.id, user.email);
}
export async function clearUser() {
const toolbar = await promiseToolbar;
if (!toolbar) return;
toolbar.setUser(null);
}
FAQs
[![version](https://img.shields.io/npm/v/@eduzz/apps-toolbar)](https://www.npmjs.com/package/@eduzz/apps-toolbar)
The npm package @eduzz/apps-toolbar receives a total of 167 weekly downloads. As such, @eduzz/apps-toolbar popularity was classified as not popular.
We found that @eduzz/apps-toolbar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.