内容简介:Disclaimer: This library is part of a bigger project and it's goal is to be as small as possible (I don't want to use the >200kb bundle ofThe name is based on nashorn which is the German word for rhino.
Ultra tiny object serializer
Disclaimer: This library is part of a bigger project and it's goal is to be as small as possible (I don't want to use the >200kb bundle of bson ). This lib is only around 4kb, uncompressed. It's only supposed to work within JS itself and not all data-types are implemented so far (see types-table at the bottom).
The name is based on nashorn which is the German word for rhino.
Installation
Install via npm or yarn :
$ npm install nason # or $ yarn add nason
Include directly via jsdelivr :
<script src="https://cdn.jsdelivr.net/npm/nason/lib/nason.min.js"></script>
Using JavaScript Modules :
import {...} from 'https://cdn.jsdelivr.net/npm/nason/lib/nason.min.mjs'
Usage
import {deserialize, serialize} from 'nason';
// Serialize something, you'll get a Uint8Array in return.
// You can pass any kind of supported data-type you want to serialize.
const enc = serialize({
'hello': 'world',
'number': 13235,
'array': [1, 2, 3, 'abc']
});
// ... save enc to file or do whatever you want with it
// Deserialize a previously serialized value
const dec = deserialize(enc);
console.log(dec); // Will be the same as initially passed into serialize
nason exports the following properties and functions:
import {
deserialize, // Takes a single Uint8Array and decodes it
serialize, // Takes any supported value and converts it to a Uint8Array
version // Current version of this package
} from 'nason';
There's even more if you want to develop plugins !
Data-types
| Data-type | Status |
|---|---|
object |
|
array |
|
string |
|
number |
|
boolean |
|
null |
|
undefined is not part of the json specification and will throw an error if you try to serialize it.
I'm facing several problems supporting floating-point numbers. PR's and / or issues with ideas / suggestions are highly appreciated!
Plugins
It's possible to write custom encoders for data-types not supported out-of-the-box. Head to plugins to get started!
Logo / Icon provided by Icons8 .
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
共鸣:内容运营方法论
舒扬 / 机械工业出版社 / 2017-5-8 / 59.00
近5年来网络信息量增长了近10倍,信息极度过剩。移动互联网以碎片化、强黏度以及惊人的覆盖率给传统的商业环境带来了巨大的影响,向陈旧的广告、公关、媒体行业展开了深度的冲击。 传统的以渠道为中心的传播思想几近失效,优秀内容成为了各行业最稀缺的资产,这是时代赋予内容生产者的巨大机会。本书作者在多年经验和大量案例研究的基础上,总结出了移动互联网时代的内容运营方法论——共鸣,它将告诉我们如何收获核心粉......一起来看看 《共鸣:内容运营方法论》 这本书的介绍吧!