
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@mappandas/yelapa
Advanced tools
Yelapa is a parser for Simple Location Markdown Language (SloML). The library can be used to turn human-readable list of addresses, point of interests or countries into Geojson data.
Note: Mapbox API key is required
SloML (pronounced slow-mel) has the following convention
This is a short description
--
Location one
--
location two
--
some address
Real example:
My travels in 2018
--
Berlin
--
Bondi beach
--
Valencia spain
Output
{
"type": "FeatureCollection",
"properties": {
"description": "My travels in 2018"
},
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
13.38333,
52.51667
]
},
"properties":{"short_code":"DE-BE","wikidata":"Q64"}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
151.273856,
-33.890896
]
},
"properties":{"wikidata":"Q673418"}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-0.375,
39.46667
]
},
"properties":{"wikidata":"Q8818"}
}
]
}
# npm install @mappandas/yalepa
Yelapa.parse(raw_input, onData(ast, featureCollection) , onError(error));
import Yelapa from "@mappandas/yelapa";
...
const geocoder = new Yelapa(
"mapbox API key"
);
const input =¨"My travels in 2018\n--\nberlin\--\ntokyo";
geocoder.parse(
input,
(ast: any, fc: FeatureCollection) => {
// ast: syntax tree data
// fc: featurecollection
},
(e:any) => {
// handle error
}
);
FAQs
SLoML parser
We found that @mappandas/yelapa 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.