Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pangolinjs/docs
Documentation for Pangolin.js.
https://github.com/pangolinjs/docs
documentation pangolinjs wiki
Last synced: 13 days ago
JSON representation
Documentation for Pangolin.js.
- Host: GitHub
- URL: https://github.com/pangolinjs/docs
- Owner: pangolinjs
- License: other
- Created: 2018-04-13T08:08:24.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-10-14T07:50:20.000Z (4 months ago)
- Last Synced: 2024-11-14T11:39:41.694Z (2 months ago)
- Topics: documentation, pangolinjs, wiki
- Homepage: https://pangolinjs.org
- Size: 3.01 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pangolin.js Docs
Documentation for [Pangolin.js](https://pangolinjs.org).
Requires [Node.js 16+](https://nodejs.org).
## Installation
Install npm dependencies.
```bash
npm install
```Update dependencies.
```bash
# Check for available updates.
npm outdated# Install updates.
npm update
```## Development
Start development server with hot reloading.
```bash
npm run dev
```## Production
Build static site files. Outputs to `docs/.vitepress/dist`.
```bash
npm run build
```## Linting
```bash
# Run JS files through ESLint.
npm run lint:js# Check for consistent Markdown formatting.
npm run lint:markdown# Check for inclusive language with Alex.
npm run lint:language
```