Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denorg/site
🌍 Static site generator for docs sites written in Deno
https://github.com/denorg/site
deno denoland denorg jamstack static-site-generator
Last synced: 27 days ago
JSON representation
🌍 Static site generator for docs sites written in Deno
- Host: GitHub
- URL: https://github.com/denorg/site
- Owner: denorg
- License: mit
- Created: 2020-05-24T07:56:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-24T08:07:27.000Z (over 4 years ago)
- Last Synced: 2024-11-07T12:37:13.262Z (3 months ago)
- Topics: deno, denoland, denorg, jamstack, static-site-generator
- Language: TypeScript
- Homepage: https://denorg.github.io/site/
- Size: 3.91 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🌍 Deno Site
The first JAMStack static site generator written in Deno, for building fast, beautiful, and accessible documentation sites.
**⚠️ WARNING:** This project is currently in alpha-stage development. Expect breaking changes.
[![Test CI](https://github.com/denorg/site/workflows/Test%20CI/badge.svg)](https://github.com/denorg/site/actions)
```bash
deno run --allow-read --allow-write --allow-net https://raw.githubusercontent.com/denorg/site/master/cli.ts
```Alternatively, you can use the API:
```ts
import { build } from "https://raw.githubusercontent.com/denorg/site/master/mod.ts";const siteResult = await build();
```You can also install it globally using the following:
```bash
deno install --allow-read --allow-write --allow-net -n site https://raw.githubusercontent.com/denorg/site/master/cli.ts
```Then, the package is available to run:
```bash
site
```Required permissions:
1. `--allow-read`
1. `--allow-write`
1. `--allow-net`## 👩💻 Development
Run tests:
```bash
deno test --allow-read
```## ⭐ Related
- [staart/site](https://github.com/staart/site) is the inspiration for this project
## 📄 License
MIT © [Denorg](https://den.org.in)