
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@camptocamp/native-map
Advanced tools
A native web component that shows an interactive map based on a given context.
DISCLAIMER: not yet published on NPM!!
To use it:
npm install @camptocamp/native-map
<html>
...
<body>
<native-map></native-map>
</body>
</html>
import '@camptocamp/native-map'
const nativeMap = document.getElementById('map');
nativeMap.context = {
view: {
zoom: 3,
center: [4, 45]
},
layers: [
{ url: 'https://my.test.server/wms', type: 'wms', name: 'abcd' }
]
};
The map cannot be modified directly, everything has to be done declaratively using the context
property of the
NativeMapElement
class.
When providing a new context, the component checks which parts of it have changed using reference equality instead of deep equality.
As an example, this will cause the WMS layer to be recreated:
// initial context has only one layer
nativeMap.context = {
layers: [
{ url: 'https://my.test.server/wms', type: 'wms', name: 'abcd' }
]
};
// add a new layer in first position
nativeMap.context = {
layers: [
{ ... },
{ url: 'https://my.test.server/wms', type: 'wms', name: 'abcd' }
]
};
This will not (because the same layer object is used in both contexts):
const wmsLayer = [{ url: 'https://my.test.server/wms', type: 'wms', name: 'abcd' }];
// initial context has only one layer
nativeMap.context = {
layers: [
wmsLayer
]
};
// add a new layer in first position
nativeMap.context = {
layers: [
{ ... },
wmsLayer
]
};
To run the demo:
npm install
npm run demo
FAQs
A native web component used to render interactive maps
We found that @camptocamp/native-map 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.