npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nepalify

v0.5.0

Published

A Javascript library that adds instant support for Nepali(नेपाली) input on HTML <input> and <textarea>.

Downloads

489

Readme

Nepalify

A JavaScript library that adds support for typing Unicode Nepali(नेपाली) input on HTML <input> and <textarea> (using both traditional and romanized layouts).

Supported Browsers

This library has been tested to work most modern browsers, the oldest ones being Internet Explorer 9, 10 and 11. If you are running an even older browser, you might want to look into the legacy version.

Live Demo / Playground

Official Demo : https://www.thapaliya.com/en/writings/practice-romanized-nepali-unicode-in-your-browser/

More Examples

If you've used Nepalify in a project and would like to include it in this list, feel free to reach out or open an issue.

Installation

Nepalify is available in CommonJS2, ES6 as well as UMD formats for all different needs.
It can be consumed directly via Unpkg CDN into your pages, or installed via NPM to include in your application bundle.

Unpkg CDN installation

Via Unpkg, you can directly use the bare url for the latest version.

<script src="https://unpkg.com/nepalify" />

Or, include the full fixed url.

<script src="https://unpkg.com/[email protected]/umd/nepalify.production.min.js" />

Also, add an input/textarea element with a unique id, if you want to follow along.

<input id="unique-input" />
<textarea id="unique-textarea"></textarea>

Optionally the following attributes can be used on the elements above.

autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"

Via NPM

The library is available on NPM as nepalify.

npm install nepalify

Afterwards, you can use CommonJS imports

const nepalify = require('nepalify');

Or, you can use ES6 imports

import nepalify from "nepalify";

Documentation

The default exports from the library consists of a handful of functions, as explained below.

availableLayouts()

This method returns all available layouts, currently romanized and traditional. These layout names can be provided as options to other functions.

console.log(nepalify.availableLayouts());
// ["romanized", "traditional"]

interceptElementByID("unique-id")

This method allows the library code to intercept the keypress events on <input> and <textarea> html elements, given an id selector. This can only be used in a browser.

The argument to this function is the same as you'd provide to the standard getElementById

var inputEl = nepalify.interceptElementById("unique-input-1");
var textareaEl = nepalify.interceptElementById("unique-textarea-1");

// Further options can be provided as a second argument
const options = {
  layout: "traditional",
  enable: false,
};
nepalify.interceptElementById("unique-input-2", options);

// When the options are not provided, the following defaults are used
const defaultOptions = {
  layout: "romanized",
  enable: true,
};

At this point, the library should already be intercepting the keypresses. Go ahead and give it a try.

The object returned by the function above has more methods that can be used to control the interception.

isEnabled()

Returns a boolean value indicating whether the interception is turned on or not.

enable()

Enable the interception on the element. Already done by default.

disable()

Disable the interception on the element. Useful for clean up or building toggle behaviour.

format("some-ascii-text")

This method allows you to format the text to Unicode nepali. Also usable in Node or any other non-browser javascript code.

var text = "kiMkr/tv/ybimuX/";
console.log(nepalify.format(text));
// किंकर्तव्यबिमुढ्

// Further options can be provided as a second argument
var text = "asdfghjkl";
const options = {
  layout: "traditional",
};
console.log(nepalify.format(text, options));
// बकमानजवपि

// When the options are not provided, the following defaults are used
const defaultOptions = {
  layout: "romanized",
};

Development

While the library is intended to run in the browser, you'll need to have node (and npm) installed locally for development.

Most of the npm targets are explained in the package.json file itself. The following flow is preferred for contribution.

  • npm install for installing all the dependencies.
  • npm run test for running the test suite.
  • npm run dev to run a local server, serves an html page with the library injected for manual testing.
  • npm run format to format all the changes before making a PR.

Changelog

Please check the CHANGELOG.md for details.

Contributors

Please check the contribution graph graph for now.

Legacy version

The legacy version of this package supported ancient browsers such as IE6, used jQuery as a dependency and relied on a bunch of hacks. It's still preserved on the legacy-jquery branch

License

Copyright © 2020, Suvash Thapaliya

Distributed under the ISC License.