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 🙏

© 2025 – Pkg Stats / Ryan Hefner

korean-phone-number

v1.4.0

Published

IT Wizard Company dotood heregtseend zoriulj gargasan package bolno. Компаний дотоод хэрэгцээнд зориулж гаргасан туслах сан болно. Энэхүү сан нь солонгос утасны дугаар оруулахад ашиглахад зориулсан React Component - р хангана.

Downloads

25

Readme

About Korean Phone Number Input @eyemgdi/itwizard

IT Wizard Company dotood heregtseend zoriulj gargasan package bolno. Компаний дотоод хэрэгцээнд зориулж гаргасан туслах сан болно. Энэхүү сан нь солонгос утасны дугаар оруулахад ашиглахад зориулсан React Component - р хангана.

Commands

npm i korean-phone-number

Example

XXX-XXXX-XXXX

010-1234-5678

XXX-XXX-XXXX

010-123-4567

02-XXX-XXXX

02-123-4567

02-XXXX-XXXX

02-1234-5678

Usage | Хэрэглээ

...

import {InputPhone} from "korean-phone-number";
...
<InputPhone style={{padding: 5, border: "1px solid green"}} onChange={handleChange} />
...
...

Configuration | Тохиргоо

Үндсэн элемэнт нь гадуураа Wrapper элемэнт байхгүй учир ашиглаж байгаа юм шиг ашиглахад болно. This component is direct compononet, which means there is no wrapper element around itself.

...
return <input value={phoneNumber} type="text" style={style} onChange={updatePhoneNumber} />;
...

Setup Files

Одоогоор ганцхан Component байгаа болно.

/src
  InputPhone.tsx
  index.tsx       # used only for export components
.gitignore
package.json
README.md         # Tailbar nemj bolno.
tsconfig.json

Helpful Resource

  https://www.youtube.com/watch?v=aVFasPXkyRE

Below is redundant script

Jest

NOTE: Stories should reference the components as if using the library, similar to the example playground. This means importing from the root project directory. This has been aliased in the tsconfig and the storybook webpack config as a helper.

   "alias": {
-    "react": "../node_modules/react",
-    "react-dom": "../node_modules/react-dom"
+    "react": "../../../node_modules/react",
+    "react-dom": "../../../node_modules/react-dom"
   },
  • main which installs deps w/ cache, lints, tests, and builds on all pushes against a Node and OS matrix
  • size which comments cost comparison of your library on every pull request using size-limit

Optimizations

Please see the main tsdx optimizations docs. In particular, know that you can take advantage of development-only optimizations:

// ./types/index.d.ts
declare var __DEV__: boolean;

// inside your code...
if (__DEV__) {
  console.log('foo');
}

Example

Then run the example inside another:

cd example
npm i # or yarn to install dependencies
npm start # or yarn start

The default example imports and live reloads whatever is in /dist, so if you are seeing an out of date component, make sure TSDX is running in watch mode like we recommend above. No symlinking required, we use Parcel's aliasing.

To do a one-off build, use npm run build or yarn build.

To run tests, use npm test or yarn test.

Jest tests are set up to run with npm test or yarn test.