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
- 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 v6.1.0 with nvm:
nvm install v6.1.0
- Set nvm to use Node v6.1.0:
nvm use v6.1.0
- 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 oncenpm 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:
node server.js
- The application will run on http://localhost:3000 by default
npm run test