Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/proycon/labirinto
A web front-end portal for a virtual laboratory of NLP tools
https://github.com/proycon/labirinto
codemeta lamachine portal scientific-software
Last synced: 24 days ago
JSON representation
A web front-end portal for a virtual laboratory of NLP tools
- Host: GitHub
- URL: https://github.com/proycon/labirinto
- Owner: proycon
- Created: 2018-04-28T13:53:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-12T01:44:43.000Z (about 1 year ago)
- Last Synced: 2024-10-03T10:29:34.964Z (about 1 month ago)
- Topics: codemeta, lamachine, portal, scientific-software
- Language: Vue
- Size: 2.35 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Project Status: Unsupported – The project has reached a stable, usable state but the author(s) have ceased all work on it. A new maintainer may be desired.](https://www.repostatus.org/badges/latest/unsupported.svg)](https://www.repostatus.org/#unsupported)
# Labirinto
Labirinto is a *virtual laboratory portal*, it makes a collection of software browseable and searchable for the
end-user. Labirinto presents the software's metadata following the [CodeMeta](https://codemeta.github.io) specification
in an intuitive way and allows the user to filter and perform a limited search. The portal gives access to software if
it offers web-based interfaces.This system is specifically geared towards research software, and for instance allows linking to relevant scientific publications for each tool.
## Architecture
Labirinto is a front-end only, it runs fully client-side and is written in Javascript using the [Vue.js](https://vuejs.org) framework.
Labirinto relies on software metadata specifications according to the [CodeMeta](https://codemeta.github.io) standard
(linked open data / JSON-LD). Metadata of the desired software collection should be combined into a single registry
(JSON-LD), which can be hosted and obtained from wherever you want. [CodeMetaPy](https://github.com/proycon/codemetapy)
can be used to build such a registry from individual ``codemeta.json`` files.Note that Labirinto does not and will never offer an editable database or metadata editor for the software metadata;
this is a front-end that does not even require a database backend or any server-side component for that matter. Our
philosophy is that software metadata should be in a simple format and either live right alongside the source code in a
version controlled repository (e.g. on github, bitbucket, etc), or be obtained from a software repository such as as the
Python Package Index, CRAN, CPAN, Maven Central and automatically converted to a unified format.Labirinto is used by and included in the [LaMachine](https://proycon.github.io/LaMachine) software distribution,
providing an overview and access to all software installed in LaMachine. The metadata for tools participating in
LaMachine is, when not explicitly provided yet, *automatically* converted to the CodeMeta standard (by
[CodeMetaPy](https://github.com/proycon/codemetapy) or [CodeMetar](https://ropensci.github.io/codemetar/)), and
subsequently combined into a single registry for use with Labirinto.## Build Setup
``` bash
# install dependencies
npm install# serve with hot reload at localhost:8080
npm run dev# build for production with minification
npm run build# build for production and view the bundle analyzer report
npm run build --report# run unit tests
npm run unit# run all tests
npm test
```