Quickly start a Deno plugin.
A quick look at the files and directories you'll see in a Deno project.
.
├─ .cargo
│ └─ config
├─ .github
│ └─ workflows
│ └─ ci.yml
├─ src
│ └─ lib.rs
├─ .gitattributes
├─ .gitignore
├─ Cargo.lock
├─ Cargo.toml
├─ CHANGELOG.md
├─ LICENSE
├─ README.md
└─ rustfmt.toml
.cargo/config
: Cargo allows local configuration for a particular package as well as global configuration.
.github/workflows/ci.yml
: GitHub Actions.
src/lib.rs
: Rust lib crate.
.gitattributes
: This file is a simple text file that gives attributes
to pathnames.
.gitignore
: This file tells git which files it should not track / not maintain a version history for.
Cargo.lock
: This file contains exact information about your dependencies. It is maintained by Cargo and should not be manually edited.
Cargo.toml
: This file describing your dependencies in a broad sense, and is written by you.
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,
and this project adheres to Semantic Versioning.
LICENSE
: Deno is licensed under the MIT license.
README.md
: A text file containing useful reference information about your project.
rustfmt.toml
: Configuring Rustfmt.
denopluginstarter is released under the MIT License. See the bundled LICENSE file for details.