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

faker-kh

v2.0.1

Published

JavaScript library for Khmer Random Word

Downloads

37

Readme

FakerKH

FakerKH is a JavaScript library for generating fake Khmer data. Use this library to create random addresses, names, quotes, and more in Khmer language.

Installation

npm install faker-kh
# or
yarn add faker-kh
# or 
pnpm add faker-kh

Usage

In your application, import the FakerKH class and use its methods to generate fake data.

import { fakerKh } from 'faker-kh';

console.log('Random Address:', fakerKh.address()); // ផ្លូវបាសាក់, ព្រៃវែង, កម្ពុជា
console.log('Random City:', fakerKh.city()); // ក្រុងប៉ៃលិន
console.log('Random First Name:', fakerKh.firstName()); // ណារុង
console.log('Random Last Name:', fakerKh.lastName()); // សន
console.log('Random Month:', fakerKh.month()); // តុលា
console.log('Random Object:', fakerKh.object());​ // សាលារៀន
console.log('Random Quote:', fakerKh.quote()); // ទឹកឡើងត្រីស៊ីស្រមោច ទឹកហោចស្រមោចស៊ីត្រី
console.log('Random Sentence:', fakerKh.sentence()); // ការចាត់ចែងគ្រប់វត្តមានត្រូវបានធ្វើដើម្បីទុកជាបទពិសោធន៍។
console.log('Random Subject:', fakerKh.subject()); // គាត់
console.log('Random Telephone Number:', fakerKh.tel()); // ០៩១ ២៣៤ ៥៦៧៨
console.log('Random Title:', fakerKh.title()); // លោកស្រី
console.log('Random Verb:', fakerKh.verb()); // លេង

You can also import only the methods you need.

import { address, city, firstName, lastName } from 'faker-kh';

console.log('Random Address:', address()); // ផ្លូវបាសាក់, ព្រៃវែង, កម្ពុជា
console.log('Random City:', city()); // ក្រុងប៉ៃលិន
console.log('Random First Name:', firstName()); // ណារុង
console.log('Random Last Name:', lastName()); // សន

Methods

  • address(): string Generate a random address.
  • city(): string Generate a random city name.
  • firstName(): string Generate a random Khmer first name.
  • lastName(): string Generate a random Khmer last name.
  • month(): string Generate a random Khmer month name.
  • object(): string Generate a random Khmer object or item.
  • quote(): string Generate a random Khmer quote.
  • sentence(): string Generate a random Khmer sentence.
  • subject(): string Generate a random Khmer subject.
  • tel(): string Generate a random Khmer telephone number.
  • title(): string Generate a random Khmer title - honorific.
  • verb(): string Generate a random Khmer verb or action word.
  • paragraph(sentenceCount?: number): string Generate a random Khmer paragraph. Default sentence count is 3.
  • noun(): string Generate a random Khmer noun.
  • fullName(): string Generate a random Khmer Full Name.
  • More to come :)

License

This project is licensed under the MIT License.