The iiif-manifest-editor is a web application that generates IIIF manifests. It allows you to import, view, update and export images and metadata using the IIIF APIs.
See this Wiki page for instructions on how to use the IIIF manifest editor: User manual
You can find online demos of the IIIF Manifest Editor here:
- Install npm globally: https://github.com/npm/npm
- Install nvm (Node Version Manager) globally: https://github.com/creationix/nvm
- Clone this repository:
git clone [email protected]:bodleian/iiif-manifest-editor.git
- Change into the project directory:
cd iiif-manifest-editor
- Install Node v8.1.4 with nvm:
nvm install v8.1.4
- Install the required node modules into the project:
npm install
- Run webpack to generate the bundle file either once or dynamically on file changes:
npm run build
: This builds the bundle file once for use in developmentnpm run build-prod
: This builds a much smaller bundle file for use in productionnpm run watch
: This builds the bundle file dynamically on all file changes- Note: when changing webpack.config.js, webpack needs to be restarted
- Start the server:
npm run start
- The application will run on http://localhost:3000 by default
npm run test