This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bernhard Blieninger
fc05486403
|
6 years ago | |
---|---|---|
.. | ||
build | 6 years ago | |
README.md | 6 years ago | |
package.json | 6 years ago |
README.md
jest-serializer
Module for serializing and deserializing object into memory and disk. By
default, the v8
implementations are used, but if not present, it defaults to
JSON
implementation. Both serializers have the advantage of being able to
serialize Map
, Set
, undefined
, NaN
, etc, although the JSON one does it
through a replacer/reviver.
Install
$ yarn add jest-serializer
API
Three kinds of API groups are exposed:
In-memory serialization: serialize
and deserialize
This set of functions take or return a Buffer
. All the process happens in
memory. This is useful when willing to transfer over HTTP, TCP or via UNIX
pipes.
import {serialize, deserialize} from 'jest-serializer';
const myObject = {
foo: 'bar',
baz: [0, true, '2', [], {}],
};
const buffer = serialize(myObject);
const myCopyObject = deserialize(buffer);
Synchronous persistent filesystem: readFileSync
and writeFileSync
This set of functions allow to send to disk a serialization result and retrieve
it back, in a synchronous way. It mimics the fs
API so it looks familiar.
import {readFileSync, writeFileSync} from 'jest-serializer';
const myObject = {
foo: 'bar',
baz: [0, true, '2', [], {}],
};
const myFile = '/tmp/obj';
writeFileSync(myFile, myObject);
const myCopyObject = readFileSync(myFile);