
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.
@yandex/ymaps3-signpost
Advanced tools
Yandex JS API package
The package is located in the dist
folder:
dist/types
TypeScript typesdist/esm
es6 modules for direct connection in your projectdist/index.js
Yandex JS ModuleRecommended use ymaps3-signpost
as usual npm package:
npm install @yandex/ymaps3-signpost
You also need to import css styles into your project:
/* index.css */
@import '@yandex/ymaps3-signpost/dist/esm/index.css';
and dynamic import
main();
async function main() {
await ymaps3.ready;
const {YMap, YMapDefaultSchemeLayer, YMapDefaultFeaturesLayer} = ymaps3;
const {YMapDefaultMarker} = await import('@yandex/ymaps3-default-ui-theme');
const {YMapSignpost} = await import('@yandex/ymaps3-signpost');
map = new YMap(document.getElementById('app'), {location: LOCATION}, [
new YMapDefaultSchemeLayer({}),
new YMapDefaultFeaturesLayer({})
]);
map.addChild(new YMapSignpost({points: MARKERS_COORDINATES}));
MARKERS_COORDINATES.forEach((point) => {
map.addChild(new YMapDefaultMarker({coordinates: point, iconName: 'fallback', size: 'normal'}));
});
}
You can use CDN with module loading handler in JS API on your page.
By default ymaps3.import
can load self modules.
If you want also load your package, should register cdn:
ymaps3.import.registerCdn('https://cdn.jsdelivr.net/npm/{package}', '@yandex/ymaps3-signpost@latest');
Just use ymaps3.import
:
const {YMapSignpost} = await ymaps3.import('@yandex/ymaps3-signpost');
FAQs
Yandex Maps JS API 3.0 example ymaps3-signpost
We found that @yandex/ymaps3-signpost demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.
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.