All Projects → spraakbanken → korp-frontend

spraakbanken / korp-frontend

Licence: MIT License
Frontend for Korp, a frontend for the IMS Open Corpus Workbench (CWB).

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
HTML
75241 projects
Pug
443 projects
CSS
56736 projects
typescript
32286 projects
PEG.js
56 projects

Actions Status

This repo contains the frontend for Korp, a frontend for the IMS Open Corpus Workbench (CWB). The Korp frontend is a great tool for searching and and visualising natural language corpus data.

Korp is developed by Språkbanken at the University of Gothenburg, Sweden.

Documentation:

Breaking changes

  • In order to benefit from superior tooling Korp migrated away from Coffeescript and now uses plain Javascript instead. This has been done semi-automatically using decaffeinate. You should replace any Coffeescript code in your fork with the equivalent Javascript.

Getting started

Install yarn: https://yarnpkg.com

Using yarn

  • install all dependencies: yarn
  • run development server: yarn start
  • build a dist-version: yarn build
  • run dist-version: yarn start:dist
  • run tests: yarn test or yarn test:karma or yarn test:e2e (tests are currently depending on Språkbankens setup).

Declare dependencies using yarn add pkgor yarn add --dev pkg for dev dependencies.

webpack

We use webpack to build Korp and webpack-dev-server to run a local server. To include new code or resources, require them where needed:

nd = require("new-dependency")
nd.aFunction()

or

imgPath = require("img/image.png")
myTemplate = `<img src='${imgPath}'>`

Most dependencies are only specified in app/index.js and where needed added to the window-object.

About the current loaders in in webpack.config.js:

  • pug and html files: all src-attributes in <img> tags and all hrefs in <link> tags will be loaded by webpack and replaced in the markup. Uses file loader so that requiring a pug or html file will give the path to the file back.
  • js files are added to the bundle
  • all images and fonts are added to the bundle using file loader and gives back a file path.
  • css and scss are added to the bundle. urls will be loaded and replaced by webpack.

In addition to this, some specific files will simply be copied as is, for example Korp mode-files.

webpack and configuration

We use window.settings to share needed configuration to config.js and modes/common.js.

config.js and modes/common.js are included in Webpacks dependency graph. Therefore it works to use require for anything needed, but only things that are in the configured location for settings.

mode-files are only loaded at runtime an any dependencies must be required in modes/common.js and then exported as a module as shown in the sample file app/modes/common.js.

Earlier versions

npm

It is unfortunately not possible to develop Korp using npm anymore (npm can not resolve all dependencies correctly). Use yarn.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].