0.1.2 • Published 10 years ago

utf8-encoding v0.1.2

Weekly downloads
872
License
MIT
Repository
github
Last release
10 years ago

Isomorphic Encoding Standard implementation ignore support without UTF-8

about

implementation of Encoding Standard TextEncoder & TextDecoder. https://encoding.spec.whatwg.org/

but this spec includes tons of legacy encoding support you may never use. so support only UTF-8 encoding/decoding for make script small for browser friendly :)

install

$ npm install utf8-encoding

usage

works in node and browser. Isomorphic !! no Browserify.

var encoder = new TextEncoder();
var decoder = new TextDecoder();
console.log(encoder.encode("beer!🍻"));
// Uint8Array[98, 101, 101, 114, 33, 240, 159, 141, 187]
console.log(decoder.decode(new Uint8Array([98, 101, 101, 114, 33, 240, 159, 141, 187])));
// "beer!🍻

build and test

$ npm install
$ npm test

and also open test/index.html in your browser and see console.

for TypeScript

use utf8-encoding.d.ts

other types which this scripts depends on are in types directory.

release process

  • develop/maintain on master branch
  • if finished, dump version to new one in package.json
  • checkout release and merge master --no-ff
  • build via npm test
  • commit build
  • add tag
  • push to github
  • npm publish

License

The MIT License (MIT) Copyright (c) 2015 Jxck

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago