Socket
Book a DemoSign in
Socket

@kayahr/text-encoding

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kayahr/text-encoding

Text encoder and decoder

latest
Source
npmnpm
Version
2.1.0
Version published
Weekly downloads
12K
-40.45%
Maintainers
1
Weekly downloads
 
Created
Source

Text Encoding

GitHub | NPM | API Doc

This project is a heavily refactored clone of an old abandoned text-encoding library with the following changes:

  • Refactored into a modern TypeScript project.
  • Separated the monolithic script into many logical modules.
  • Each encoding is a separate module and can be loaded individually if needed.
  • No longer a polyfill for the Encoding API but a API compatible replacement with advanced features like encoding support for not just UTF-8.

Usage

Install the library as a dependency in your project:

npm install @kayahr/text-encoding

And then use it like this:

import { TextEncoder, TextDecoder } from "@kayahr/text-encoding";

const encoder = new TextEncoder("big5");
const encoded = encoder.encode(string);

const decoder = new TextDecoder("big5");
const decoded = decoder.decode(encoded);

When importing the module from @kayahr/text-encoding then all provided encodings are loaded automatically. If you want to keep your application as small as possible then you can import the module like this instead:

import { TextEncoder } from "@kayahr/text-encoding/no-encodings";

When doing this then no encodings are loaded and only UTF-8 is supported. When you later need a specific encoding then use imports like this:

import "@kayahr/text-encoding/encodings/shift_jis";

Or import all encodings:

import "@kayahr/text-encoding/encodings";

There is also a helper function for creating a text encoder which returns an implementation of the original TextEncoder (if present), when encoding is UTF-8 and an implementation of the custom TextEncoder from this library when encoding is not UTF-8:

import { createTextEncoder } from "@kayahr/text-encoding";

const encoder = createTextEncoder(encoding);

Supported encodings

EncodingAliases
big5big5-hkscs, cn-big5, csbig5, x-x-big5
euc-jpcseucpkdfmtjapanese, x-euc-jp
euc-krcseuckr, csksc56011987, iso-ir-149, korean, ks_c_5601-1987, ks_c_5601-1989, ksc5601, ksc_5601, windows-949
gb18030
gbkchinese, csgb2312, csiso58gb231280, gb2312, gb_2312, gb_2312-80, iso-ir-58, x-gbk
ibm866866, cp866, csibm866
iso-2022-jpcsiso2022jp
shift_jiscsshiftjis, ms932, ms_kanji, shift-jis, sjis, windows-31j, x-sjis
utf-8unicode-1-1-utf-8, utf8
utf-16leutf-16
utf-16be
iso-8859-2csisolatin2, iso-ir-101, iso8859-2, iso88592, iso_8859-2, iso_8859-2:1987, l2, latin2
iso-8859-3csisolatin3, iso-ir-109, iso8859-3, iso88593, iso_8859-3, iso_8859-3:1988, l3, latin3
iso-8859-4csisolatin4, iso-ir-110, iso8859-4, iso88594, iso_8859-4, iso_8859-4:1988, l4, latin4
iso-8859-5csisolatincyrillic, cyrillic, iso-ir-144, iso8859-5, iso88595, iso_8859-5, iso_8859-5:1988
iso-8859-6arabic, asmo-708, csiso88596e, csiso88596i, csisolatinarabic, ecma-114, iso-8859-6-e, iso-8859-6-i, iso-ir-127, iso8859-6, iso88596, iso_8859-6, iso_8859-6:1987
iso-8859-7csisolatingreek, ecma-118, elot_928, greek, greek8, iso-ir-126, iso8859-7, iso88597, iso_8859-7, iso_8859-7:1987, sun_eu_greek
iso-8859-8csiso88598e, csisolatinhebrew, hebrew, iso-8859-8-e, iso-ir-138, iso8859-8, iso88598, iso_8859-8, iso_8859-8:1988, visual
iso-8859-10csisolatin6, iso-ir-157, iso8859-10, iso885910, l6, latin6
iso-8859-13iso8859-13, iso885913
iso-8859-14iso8859-14, iso885914
iso-8859-15csisolatin9, iso8859-15, iso885915, iso_8859-15, l9
iso-8859-16
koi8-rcskoi8r, koi, koi8, koi8_r
koi8-ukoi8-ru
macintoshcsmacintosh, mac, x-mac-roman
windows-874dos-874, iso-8859-11, iso8859-11, iso885911, tis-620
windows-1250cp1250, x-cp1250
windows-1251cp1251, x-cp1251
windows-1252ansi_x3.4-1968, ascii, cp1252, cp819, csisolatin1, ibm819, iso-8859-1, iso-ir-100, iso8859-1, iso88591, iso_8859-1, iso_8859-1:1987, l1, latin1, us-ascii, x-cp1252
windows-1253cp1253, x-cp1253
windows-1254cp1254, csisolatin5, iso-8859-9, iso-ir-148, iso8859-9, iso88599, iso_8859-9, iso_8859-9:1989, l5, latin5, x-cp1254
windows-1255cp1255, x-cp1255
windows-1256cp1256, x-cp1256
windows-1257cp1257, x-cp1257
windows-1258cp1258, x-cp1258
x-mac-cyrillicx-mac-ukrainian

Keywords

typescript

FAQs

Package last updated on 01 Nov 2025

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