
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Simple kml generation in node
Not recommended for use outside of urban-sky yet. This package is highly subject to change and very early stage.
$ npm install kmlify
const KMLify = require('kmlify');
const kml = new KMLify({name: 'Seagull Flight Path'})
kml.placemark({
name: 'Seagull1',
coordinates: [
[-102.0000492, 41.07128125, 20062],
[-101.9940706, 41.07336908, 19669]
]
})
const output = t.context.kml.export(true)
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>Seagull Flight Path.kml</name>
...
<Placemark>
<name>Seagull1</name>
<styleUrl>#msn_ylw-pushpin0</styleUrl>
<LineString>
<extrude>1</extrude>
<tessellate>1</tessellate>
<altitudeMode>absolute</altitudeMode>
<coordinates>
-102.0000492,41.07128125,20062 -101.9940706,41.07336908,19669
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>
MIT
FAQs
Simple kml generation
We found that kmlify 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.