https://github.com/pangolinjs/docs
Documentation for Pangolin.js.
https://github.com/pangolinjs/docs
documentation pangolinjs wiki
Last synced: about 1 month 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 (about 8 years ago)
- Default Branch: main
- Last Pushed: 2025-10-01T09:11:07.000Z (7 months ago)
- Last Synced: 2025-12-06T06:12:14.872Z (5 months ago)
- Topics: documentation, pangolinjs, wiki
- Homepage: https://pangolinjs.org
- Size: 2.18 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
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
```