Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmkasendwa/rmk-utils
https://github.com/rmkasendwa/rmk-utils
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rmkasendwa/rmk-utils
- Owner: rmkasendwa
- License: mit
- Created: 2022-11-01T15:44:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-06T00:29:03.000Z (11 months ago)
- Last Synced: 2024-10-25T17:40:16.664Z (19 days ago)
- Language: TypeScript
- Size: 91.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF-CONDUCT.md
Awesome Lists containing this project
README
infinite-debugger/rmk-utils
## Installation
infinite-debugger/rmk-utils is available as an [npm package](https://www.npmjs.com/package/@infinite-debugger/rmk-utils).
```sh
// with npm
npm install @infinite-debugger/rmk-utils// with yarn
yarn add @infinite-debugger/rmk-utils
```## Usage
Here is a quick example to get you started, **it's all you need**:
```ts
import { getInterpolatedPath } from '@infinite-debugger/rmk-utils/paths';getInterpolatedPath("/users/:userId", { userId: 123 }); // -> "/users/123"
```## Contributing
Read the [contributing guide](/CONTRIBUTING.md) to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to the utility library.
## Changelog
If you have recently updated, please read the [changelog](https://github.com/rmkasendwa/rmk-utils/releases) for details of what has changed.
## License
This project is licensed under the terms of the
[MIT license](/LICENSE).