Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@eeue56/adeilad

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eeue56/adeilad

Ensure JSON has the correct structure at runtime

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

adeilad

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.

Installation

npm install --save @eeue56/adeilad

Example usage

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);
    }
}

Docs

See docs

You may also want to see the Result type from coed

Name

Adeilad is the Welsh word for buildings. For English speakers it'd be pronounced similar to "ah-dey-lad".

Keywords

FAQs

Package last updated on 22 Jul 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc