Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/justjavac/deno_curl

curl for Deno
https://github.com/justjavac/deno_curl

curl deno

Last synced: 3 months ago
JSON representation

curl for Deno

Awesome Lists containing this project

README

        

# deno_starter

[![tag](https://img.shields.io/github/release/justjavac/deno_starter)](https://github.com/justjavac/deno_starter/releases)
[![Build Status](https://github.com/justjavac/deno_starter/workflows/ci/badge.svg?branch=master)](https://github.com/justjavac/deno_starter/actions)
[![license](https://img.shields.io/github/license/justjavac/deno_starter)](https://github.com/justjavac/deno_starter/blob/master/LICENSE)
[![](https://img.shields.io/badge/deno-v1.3-green.svg)](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_starter](https://github.com/justjavac/deno_starter) is released under the MIT License. See the bundled [LICENSE](./LICENSE) file for details.