Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 975 Bytes

README.md

File metadata and controls

47 lines (33 loc) · 975 Bytes

Status file explorer

This monorepo contains a frontend and backend implementation for browsing debian control files, specifically the one located in /var/lib/dpkg/status. A mock file is included within the repo, so you don't need to have a debian system to enjoy this application.

Live demo

https://mantysalo.github.io/status-explorer/#/

Getting started

With npm

npm install
npx lerna bootstrap # Install dependencies for packages
npx lerna run start # Run start script for packages

With Yarn

yarn
yarn lerna bootstrap # Install dependencies for packages
yarn lerna run start # Run start script for packages

To run scripts for a specific package use the following syntax: yarn lerna run <scriptname> --scope <packagename>

Example:

yarn lerna run test --scope api

Requirements

  • Node >=10
  • npm or Yarn

Technology used

Frontend

  • React
  • TypeScript

Backend

  • NodeJS with Koa
  • TypeScript