https://github.com/gapitio/utility-template
A template for creating simple components.
https://github.com/gapitio/utility-template
boilerplate boilerplate-template eslint jest prettier rollup template typescript typescript-eslint utility
Last synced: 2 months ago
JSON representation
A template for creating simple components.
- Host: GitHub
- URL: https://github.com/gapitio/utility-template
- Owner: gapitio
- Created: 2020-10-09T13:20:48.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T15:15:05.000Z (over 3 years ago)
- Last Synced: 2025-02-09T11:04:45.678Z (over 1 year ago)
- Topics: boilerplate, boilerplate-template, eslint, jest, prettier, rollup, template, typescript, typescript-eslint, utility
- Language: TypeScript
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# utility name
A short description of the utility
E.g. This utility adds two numbers together.
It also has a variable and function that returns "something".
## Usage
Description/example on how to use the utility.
### add
```ts
import { add } from "@gapit/utility-template";
add(2, 3); // Returns 5
```
### SOMETHING_VARIABLE
```ts
import { SOMETHING_VARIABLE } from "@gapit/utility-template";
console.log(SOMETHING_VARIABLE); // Returns "something
```