https://github.com/justjavac/deno_password
https://github.com/justjavac/deno_password
deno deno-module deno-password password
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/justjavac/deno_password
- Owner: justjavac
- License: mit
- Created: 2020-08-19T01:17:08.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2022-07-29T13:36:21.000Z (almost 4 years ago)
- Last Synced: 2026-03-21T21:53:47.039Z (3 months ago)
- Topics: deno, deno-module, deno-password, password
- Language: TypeScript
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deno_password
[](https://github.com/justjavac/deno_password/releases)
[](https://github.com/justjavac/deno_password/actions)
[](https://github.com/justjavac/deno_password/blob/master/LICENSE)
[](https://github.com/denoland/deno)
Quickly start a Deno module.
## π§ What's inside?
A quick look at the files and directories you'll see in a Deno project.
.
ββ .github
β ββ workflows
β ββ ci.yml
ββ .vscode
ββ .vscode
β ββ extensions.json
β ββ settings.json
ββ .gitattributes
ββ .gitignore
ββ CHANGELOG.md
ββ LICENSE
ββ mod_test.ts
ββ mod.ts
ββ README.md
1. **`.github\workflows\ci.yml`**: GitHub Actions.
1. **`.vscode\extensions.json`**: Workspace recommended extensions for Deno
Developers.
1. **`.gitignore`**: This file tells git which files it should not track / not
maintain a version history for.
1. **`CHANGELOG.md`**: This file contains a curated, chronologically ordered
list of notable changes for each version of a project. The format is based on
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1. **`LICENSE`**: Deno is licensed under the MIT license.
1. **`mod.ts`**: Deno's default entry point. The filename mod.ts follows Rustβs
convention, is shorter than index.ts, and doesnβt come with any preconceived
notions about how it might work. Deno does not treat "index.js" or "index.ts"
in a special way. By using these filenames, it suggests that they can be left
out of the module specifier when they cannot. This is confusing.
1. **`mod_test.ts`**: Each module should come with its test as a sibling with
the name `modulename_test.ts`. For example the module `foo.ts` should come
with its sibling `foo_test.ts`.
1. **`README.md`**: A text file containing useful reference information about
your project.
## License
[deno_password](https://github.com/justjavac/deno_password) is released under
the MIT License. See the bundled [LICENSE](./LICENSE) file for details.