Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@eeue56/adeilad
Advanced tools
Ensure JSON has the correct structure at runtime, inspired by Elm's decoders and the pipeline decoder package.
These functions are best used at the surface points where JSON comes into your program: either via an API call, user input, or some untyped library.
Part of the Hiraeth collection.
npm install --save @eeue56/adeilad
Imagine you have some API that gives you JSON, for example:
import { decode, pipeline, required, string, number, array } from "@eeue56/adeilad";
// fetched via a http request
const someExampleData = {
name: "Noah",
age: 28,
pets: [
{ name: "Frodo", age: 8 },
{ name: "Fiver", age: 3 },
]
};
type Pet = {
name: string;
age: number;
}
function Pet(name: string, age: number): Pet {
return {
name,
age
}
}
type Person = {
name: string;
age: number;
pets: Pet[]
}
function Person(name: string, age: number, pets: Pet[]): Person{
return {
name,
age,
pets
}
}
const petDecoder = pipeline([
required("name", string()),
required("age", number())
])
const personDecoder = pipeline([
required("name", string()),
required("age", number()),
required(pets, array(petDecoder))
]))
const result = decode(personDecoder, person);
switch (result.kind) {
"ok": {
console.log("Got a valid person:", result.value);
},
"err": {
console.error("Invalid person:", res.error);
}
}
See docs
You may also want to see the Result type from coed
Adeilad is the Welsh word for buildings. For English speakers it'd be pronounced similar to "ah-dey-lad".
FAQs
Ensure JSON has the correct structure at runtime
We found that @eeue56/adeilad 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.