Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```