
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Presenter.js is a presentation tool for programmatically building animated visual slides.
This library is still in development and its API may change at any time.
The simplest way to get started with a Presenter.js presentation is via
npm create presenter
.
$ npm create presenter
Running npm create presenter
will prompt you to enter a project name and will
then create a new presentation with Presenter.js, written in TypeScript and
built with Webpack.
After creating the new presentation, cd
into the directory and run
npm run serve
to run the presentation. Edit src/index.ts
to make changes
to your presentation.
Presenter.js can also be installed manually via npm
.
$ npm install presenter
Create a presentation by specifying a list of slides, where each slide may contain objects and animations.
import { Presentation, Slide, Text } from "presenter";
const slide = new Slide([
new Text("Welcome to Presenter.js!", {
position: { x: 0.5, y: 0.5 },
anchor: "center",
fontSize: 150,
}),
]);
document.addEventListener("DOMContentLoaded", () => {
const presentation = new Presentation(
"My Presentation",
[slide],
document.body,
);
presentation.present();
});
FAQs
A JavaScript presentation library
We found that presenter demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.