https://github.com/hrbrmstr/obs-plot-wpe
Bonus Drop #23 Companion Repo
https://github.com/hrbrmstr/obs-plot-wpe
observable-plot
Last synced: about 1 year ago
JSON representation
Bonus Drop #23 Companion Repo
- Host: GitHub
- URL: https://github.com/hrbrmstr/obs-plot-wpe
- Owner: hrbrmstr
- Created: 2023-08-27T05:02:26.000Z (over 2 years ago)
- Default Branch: batman
- Last Pushed: 2023-08-27T05:47:54.000Z (over 2 years ago)
- Last Synced: 2025-01-16T02:47:38.132Z (about 1 year ago)
- Topics: observable-plot
- Language: JavaScript
- Homepage: https://rud.is/wpe/2023-08-27/
- Size: 1.34 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bonus Drop #23 Companion Repo
The live site is at .
The entire site is written in Vanilla JS with Lit webcomponents. All you need is a web server to kick the tyres. No "npm".
Consider using one from Drop #145.

Directory layout:
```plain
.
├── README.md
├── components
│ ├── plot-element.js
│ └── shiki-element.js
├── css
│ └── index.css
├── data
│ ├── ip-bytes.json
│ ├── mtcars.csv
│ └── tags-ips.json
├── dist
│ └── onig.wasm
├── favicon.ico
├── index.html
├── js
│ ├── d3.js
│ ├── plot.js
│ └── shared.js
├── languages
│ ├── abap.tmLanguage.json
│ ├── actionscript-3.tmLanguage.json
│ ├── ada.tmLanguage.json
│ …
│ └── zenscript.tmLanguage.json
├── preview.png
├── shiki
│ ├── LICENSE
│ ├── README.md
│ ├── dist
│ │ ├── index.browser.mjs
│ │ ├── index.d.ts
│ │ ├── index.esm.js
│ │ ├── index.js
│ │ ├── index.jsdelivr.iife.js
│ │ ├── index.unpkg.iife.js
│ │ └── onig.wasm
│ ├── package.json
│ └── samples
│ ├── Marko.sample
│ ├── abap.sample
│ ├── actionscript-3.sample
│ …
│ └── zenscript.sample
└── themes
├── css-variables.json
├── dark-plus.json
├── dracula-soft.json
…
└── vitesse-light.json
```