Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yooneskh/unified-resource-maker
Personal tool to make resource skeleton file structure
https://github.com/yooneskh/unified-resource-maker
Last synced: about 1 month ago
JSON representation
Personal tool to make resource skeleton file structure
- Host: GitHub
- URL: https://github.com/yooneskh/unified-resource-maker
- Owner: yooneskh
- Created: 2021-08-25T14:24:08.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-26T09:10:09.000Z (about 2 months ago)
- Last Synced: 2024-11-26T10:54:15.151Z (about 2 months ago)
- Language: TypeScript
- Size: 14.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unified Resource Maker
This is a personal tool to make frequently made backend skeleton files quickly. It is made with deno.
# Usage
You can directly call the script from the github.
```
deno run -A https://raw.githubusercontent.com/yooneskh/unified-resource-maker/refs/heads/master/resource-maker.ts User
```This skeleton wil be made in CWD
```
./
-- users/
---- mod.ts
```You can alias this command to use it more easily.
```
alias deno-make-resource="deno run -A https://raw.githubusercontent.com/yooneskh/unified-resource-maker/refs/heads/master/resource-maker.ts"
deno-make-resource User ./domains/ Authentication
```This will be made.
```
./
-- domains/
---- authentication/
------ users/
-------- mod.ts
```