Skip to Content
Kenat is a work in progress project ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป
Documentation๐Ÿ“ฆ Installation

๐Ÿ“ฆ Installation

undefined

๐Ÿ›  Install with a Package Manager

npm install kenat

โœ… Supported Environments

  • Node.js โ‰ฅ 14
  • Modern browsers (ES6+)
  • Works with React, Vue, Svelte, etc.
  • Not tested on legacy browsers like IE11

๐Ÿ“ฅ Basic Import & Usage

import Kenat from 'kenat'; const date = new Kenat(); console.log(date.getEthiopian());

๐Ÿ”„ Dynamic Import (CommonJS)

(async () => { const { default: Kenat } = await import('kenat'); console.log(new Kenat().toString()); })();

๐Ÿงช Verify Installation

node -e "import('kenat').then(m => console.log(new m.default().toString()))"

Expected Output:

Ethiopian: 2017-9-21
Last updated on