https://github.com/nyu-dh/viewpoint
wip ~ create & embed iiif views from uri params
https://github.com/nyu-dh/viewpoint
iiif
Last synced: about 1 month ago
JSON representation
wip ~ create & embed iiif views from uri params
- Host: GitHub
- URL: https://github.com/nyu-dh/viewpoint
- Owner: nyu-dh
- Created: 2021-11-09T20:44:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T20:47:24.000Z (about 2 years ago)
- Last Synced: 2024-07-29T18:56:48.856Z (9 months ago)
- Topics: iiif
- Language: Svelte
- Homepage: https://dss.hosting.nyu.edu/viewpoint/
- Size: 9.22 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nyu-dss/viewpoint
## prerequisites
- [Node Version Manager](https://github.com/nvm-sh/nvm#installing-and-updating) (NVM)
- [Git](https://git-scm.com/downloads)## local development
1. Clone the repo
```sh
git clone [email protected]:nyu-dss/viewpoint.git && cd viewpoint
```2. Install project node version (specified in `.nvmrc`)
```sh
nvm install
```3. Install npm packages
```sh
npm install
```4. Run the dev server
```sh
npm run dev
```5. Open in browser at [http://localhost:3000/viewpoint/](http://localhost:3000/viewpoint/)
6. Quit the server with `Ctrl-c`.
7. Auto-format code
```sh
npm run format
```7. Lint code
```sh
npm run lint
```