@toktokhan-dev/node
TypeScript icon, indicating that this package has built-in type declarations

0.0.10 • Public • Published

@toktokhan-dev/node

node 환경에서 사용 가능한, utility function 을 제공합니다. cjs, 와 es 환경 모두 사용 가능한 모듈입니다.

자세한 내용 및 제공하는 유틸 함수의 목록은 Tokdocs 공식 문서에서 확인 할 수 있습니다.

Installation

npm i @oktokhan-dev/node

Preview

import {
  createPackageRoot,
  findFileToTop,
  json,
  prettierString,
} from '@toktokhan-dev/node'

const packageRoot = createPackageRoot(__dirname)
const packageJsonPath = pacageRoot('package.json')
const packageJson = json(packageJsonPath)

const prettierConfigPath = findFileToTop('.', '.prettierrc')
const file = readFileSync('Component.tsx', 'utf-8')
const prettyFile = prettierString(file, { configPath: 'auto', tabWidth: 2 })

Package Sidebar

Install

npm i @toktokhan-dev/node

Weekly Downloads

289

Version

0.0.10

License

ISC

Unpacked Size

558 kB

Total Files

6

Last publish

Collaborators

  • toktokhan_dev
  • lde1020
  • _sunghye