Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markthree/easy_std
Generic Deno standard library, focused on ease of use | 通用 Deno 标准库,专注于易用性
https://github.com/markthree/easy_std
deno easy-to-use fn scripts std
Last synced: 6 days ago
JSON representation
Generic Deno standard library, focused on ease of use | 通用 Deno 标准库,专注于易用性
- Host: GitHub
- URL: https://github.com/markthree/easy_std
- Owner: markthree
- License: mit
- Created: 2023-06-12T12:08:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-28T03:20:45.000Z (9 months ago)
- Last Synced: 2024-02-28T04:27:40.477Z (9 months ago)
- Topics: deno, easy-to-use, fn, scripts, std
- Language: TypeScript
- Homepage: https://deno.land/x/easy_std
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# easy_std
Generic Deno standard library, focused on ease of use
## scripts
### release
1. export your current version number to `version.ts`
```ts
// version.ts or src/version.ts
export const version = "0.0.0";
```2. update your deno.json
```json5
// deno.json or deno.jsonc
{
"tasks": {
"start": "deno run mod.ts",
"release": "deno run --allow-read --allow-write --allow-env --allow-run https://deno.land/x/easy_std/scripts/release.ts"
}
}
```3. executing the deno task will automatically update the version
```shell
deno task release
```
## function
The functions provided by this package are safe, efficient, and support multiple
platforms at the same time。
## License
Made with [markthree](https://github.com/markthree)
Published under [MIT License](./LICENSE).