
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
windows-1254
Advanced tools
windows-1254 is a robust JavaScript implementation of the windows-1254 character encoding as defined by the Encoding Standard.
This encoding is known under the following names: cp1254, csisolatin5, iso-8859-9, iso-ir-148, iso8859-9, iso88599, iso_8859-9, iso_8859-9:1989, l5, latin5, windows-1254, and x-cp1254.
Via npm:
npm install windows-1254
In a browser or in Node.js:
import {encode, decode, labels} from 'windows-1254';
// or…
import * as windows1254 from 'windows-1254';
windows1254.labelsAn array of strings, each representing a label for this encoding.
windows1254.encode(input, options)This function takes a plain text string (the input parameter) and encodes it according to windows-1254. The return value is an environment-agnostic Uint16Array of which each element represents an octet as per windows-1254.
const encodedData = windows1254.encode(text);
The optional options object and its mode property can be used to set the error mode. The two available error modes are 'fatal' (the default) or 'replacement'. (Note: This differs from the spec, which recognizes “fatal” and HTML” modes for encoders. The reason behind this difference is that the spec algorithm is aimed at producing HTML, whereas this library encodes into an environment-agnostic Uint16Array of bytes.)
const encodedData = windows1254.encode(text, {
mode: 'replacement'
});
// If `text` contains a symbol that cannot be represented in windows-1254,
// instead of throwing an error, it becomes 0xFFFD.
windows1254.decode(input, options)This function decodes input according to windows-1254. The input parameter can either be a Uint16Array of which each element represents an octet as per windows-1254, or a ‘byte string’ (i.e. a string of which each item represents an octet as per windows-1254).
const text = windows1254.decode(encodedData);
The optional options object and its mode property can be used to set the error mode. For decoding, the error mode can be 'replacement' (the default) or 'fatal'.
const text = windows1254.decode(encodedData, {
mode: 'fatal'
});
// If `encodedData` contains an invalid byte for the windows-1254 encoding,
// instead of replacing it with U+FFFD in the output, an error is thrown.
Similar modules for other single-byte legacy encodings are available.
| Mathias Bynens |
windows-1254 is available under the MIT license.
FAQs
A robust windows-1254 encoder/decoder written in JavaScript.
The npm package windows-1254 receives a total of 7,194 weekly downloads. As such, windows-1254 popularity was classified as popular.
We found that windows-1254 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

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.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.