Skip to content

apacheli/abyss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Abyss

About

Simple MessagePack codec written in TypeScript for Deno.

Example

import {
  decode,
  encode,
} from "https://github.com/apacheli/abyss/raw/master/mod.ts";

const encoded = encode({
  hello: "world",
  array: [1, 2, 3],
  map: {
    yes: true,
    no: false,
    nil: null,
  },
});

const decoded = decode(encoded);

Needs Fixing

  • Decode ext and fixext formats, preferably without a structure.
  • Encode BigInt types without losing precision when decoding back.

Releases

No releases published

Packages

No packages published