Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justjavac/deno_starter
deno starter for creating a module
https://github.com/justjavac/deno_starter
deno deno-core deno-mod deno-module deno-modules deno-starter typescript typescript-library
Last synced: 22 days ago
JSON representation
deno starter for creating a module
- Host: GitHub
- URL: https://github.com/justjavac/deno_starter
- Owner: justjavac
- License: mit
- Created: 2019-12-08T12:30:48.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-08-18T00:22:41.000Z (about 2 years ago)
- Last Synced: 2024-10-03T12:16:23.733Z (about 1 month ago)
- Topics: deno, deno-core, deno-mod, deno-module, deno-modules, deno-starter, typescript, typescript-library
- Language: TypeScript
- Homepage:
- Size: 36.1 KB
- Stars: 49
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# deno_starter
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
ββ .gitattributes
ββ .gitignore
ββ CHANGELOG.md
ββ LICENSE
ββ mod_test.ts
ββ mod.ts
ββ README.md1. **`.github\workflows\ci.yml`**: GitHub Actions.
2. **`.gitattributes`**: This file is a simple text file that gives `attributes`
to pathnames.3. **`.gitignore`**: This file tells git which files it should not track / not
maintain a version history for.4. **`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).5. **`LICENSE`**: Deno is licensed under the MIT license.
6. **`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.7. **`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`.8. **`README.md`**: A text file containing useful reference information about
your project.## License
[deno_starter](https://github.com/justjavac/deno_starter) is released under the
MIT License. See the bundled [LICENSE](./LICENSE) file for details.