Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mskian/deno-utilities-monorepo
🦕 A Deno Module with Multiple utility tools 🦕
https://github.com/mskian/deno-utilities-monorepo
deno deno-module deno-tools denoland monorepo nestland tools typescript utilities utility
Last synced: about 3 hours ago
JSON representation
🦕 A Deno Module with Multiple utility tools 🦕
- Host: GitHub
- URL: https://github.com/mskian/deno-utilities-monorepo
- Owner: mskian
- License: mit
- Created: 2022-08-19T14:59:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-19T15:14:04.000Z (about 2 years ago)
- Last Synced: 2024-10-16T16:16:06.289Z (22 days ago)
- Topics: deno, deno-module, deno-tools, denoland, monorepo, nestland, tools, typescript, utilities, utility
- Language: TypeScript
- Homepage: https://deno.land/x/utilitiesmonorepo
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deno Utilities Monorepo
[![Test Tools](https://github.com/mskian/deno-utilities-monorepo/actions/workflows/test.yml/badge.svg)](https://github.com/mskian/deno-utilities-monorepo/actions/workflows/test.yml)
![Deno](https://img.shields.io/badge/Deno-464647?style=for-the-badge&logo=deno&logoColor=white)A Deno Module with Multiple utility tools
## Prerequisites
- Deno on your System
## Utilities
- Slugify a string
- Kilometer Conversion - From Meter to Kilometer
- Convert Speed from Meter Per Seconds to Kilometer Per Hour
- Convert Bike or Cycle Moving time to Human Readable format
- Convert date to Human Readable format## Usage
```js
import { utilitytools } from "https://deno.land/x/utilitiesmonorepo/mod.ts";console.log(utilitytools.kmConversion(205957));
console.log(utilitytools.speedConversion(7.252));
console.log(utilitytools.HashTag("santhoshveer helloword demo.land lume.land"));
console.log(utilitytools.slugify("santhoshveer helloword demo.land lume.land"));
console.log(utilitytools.movingTime(16952));
console.log(utilitytools.humanDate("2021-10-28T01:02:20Z"));
```## Testing
```sh
deno run --allow-net --allow-read test.tsor
deno task test
```Feel free to add your useful utility tools via PR 😊
- inspiration -
## LICENSE
MIT