Skip to content

Telestion Frontend Framework (Technical leads: Ludwig Richter, Jan Tischhöfer)

License

Notifications You must be signed in to change notification settings

jantischhoefer/telestion-client

 
 

Repository files navigation

Telestion Client

Maintainability Test Coverage GitHub Workflow Status GitHub Workflow Status GitHub lerna Node current NPM current Twitter Follow

This is the Telestion Client Library Monorepo. It contains, in basic terms, a framework for building so-called Project-Specific-Clients (PSCs), which are clients for the Telestion software that perfectly fit the mission's requirements.

Telestion is an ecosystem for Ground Station software that's easy to adjust to a mission's needs without re-inventing the wheel.

Getting Started with PSC development

This is just a very basic guide for getting started. For more in-depth guides, reference, etc., please refer to the PSC Developer Manual.

To make it easy for you to develop PSCs, we provide a fully-featured CLI that, while keeping everything extensible, gives you a hand in creating new projects, generating boilerplate in the projects, running the project during development, and building the PSC, either for the web or as a native, Electron-based, app.

Before you begin

Before you begin, please make sure that you have the following tools installed on your system:

With both installed, we're ready to take off 🚀:

Installing the CLI

First, let's install the Telestion Client CLI. Open a command line and enter the following command:

npm install --global @wuespace/telestion-client-cli

⚠ If, on UNIX-based systems (Linux or macOS), you run into permission issues when running this command, please try re-running it with sudo.

Creating the PSC

With the CLI installed, we can create our first PSC project. Open a command line in a folder where you'd like to create your project and run:

tc-cli init

You will then be asked one or more questions (like the project title). When everything's answered, the CLI will initialize a full PSC project for you, so ... sit back, relax, and enjoy the flight 😉.

Oh! We're already on final approach, and now ... the command is finished. You will find that the CLI generated a PSC project into a folder matching the title you've given the project.

Running the PSC

You can now enter that folder and run the PSC by running:

npm start

Houston, Tranquility Base here, the Eagle has landed! You should, now, see a flashy PSC open in a new window.

Next steps

This might all seem a bit overwhelming, at first, but don't worry: We've got you covered and try to provide all the documentation and help you need to get going.

To learn about how to develop the PSC, please take a look at the PSC Developer Manual, which contains guides, explanations of concepts, and reference for everything surrounding the topic. You can find the latest version as PDF in the Documentation Releases. We are also working on providing this documentation on our website.

For the always-up-to-date API reference for all the npm packages of this repository, please have a look at our Online API Reference, powered by fliegdoc. As Telestion is meant to be extensible, documentation is a high priority. Therefore, we have a high standard for the API Reference, as well, with every exposed API being fully documented with Doc Comments, including an example for every function, and so on.

Last, but not least, you should also consider taking a look at some of our already existing PSCs:

This Repository

Project Structure

The overall file structure of this monorepo looks like this:

.
├── .github
│   ├── workflows (CI configuration)
│   └── dependabot.yml (Dependabot config)
├── .storybook
│   └── main.js (Storybook configuration)
├── base-configs (configurations around the repo)
│   ├── eslint.base.js
│   └── [...]
├── packages (npm packages within this repo)
│   ├── telestion-client-cli
│   ├── telestion-client-common
│   ├── telestion-client-core
│   ├── telestion-client-prop-types
│   ├── telestion-client-template
│   ├── telestion-client-types
│   ├── vertx-event-bus
│   └── vertx-mock-server
├── scripts
│   ├── [...]
│   └── README.md
├── .fliegdocrc.js (Fliegdoc configuration for generating doc pages)
├── CHANGELOG.md (DON'T TOUCH! Automatically generated Changelog)
├── lerna.json (Lerna configuration)
├── README.md (you're here :P)
└── [...]

Many folders, such as ./scripts, the individual packages in ./packages, etc., contain their own README.md that documents their inner structure.

Packages

Contributing

For the documentation on contributing to this repository, please take a look at the Contributing Guidelines.

Contributors

Thank you to all contributors of this repository:

Contributors

Made with contributors-img.

About

This is part of Telestion, a project by WüSpace e.V..

About

Telestion Frontend Framework (Technical leads: Ludwig Richter, Jan Tischhöfer)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 84.1%
  • JavaScript 13.8%
  • EJS 1.8%
  • CSS 0.3%