Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jetbridge/jetkit-react
Open source JetKit components for React+TypeScript
https://github.com/jetbridge/jetkit-react
Last synced: about 1 month ago
JSON representation
Open source JetKit components for React+TypeScript
- Host: GitHub
- URL: https://github.com/jetbridge/jetkit-react
- Owner: jetbridge
- Created: 2019-09-05T12:15:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:43:01.000Z (almost 2 years ago)
- Last Synced: 2024-10-16T09:06:25.238Z (2 months ago)
- Language: TypeScript
- Size: 44.3 MB
- Stars: 2
- Watchers: 9
- Forks: 1
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build and test](https://github.com/jetbridge/jetkit-react/actions/workflows/reactApp.yml/badge.svg)](https://github.com/jetbridge/jetkit-react/actions/workflows/reactApp.yml)
# JetKit 🚀
JetKit is a set of components and libraries for building web and mobile applications that work together to accelerate
development and share common components without a lot of copy-pasting of code.This package is for React and TypeScript projects.
# Configuration
## API Client
To configure your project to use an API client that is compatible with a JetKit backend server, create a `.env` file with the contents:
```
REACT_APP_BASE_URL=http://localhost:5000/api
```Alternatively, if you're using NEXT JS, you could use its native [public env variable](https://nextjs.org/docs/basic-features/environment-variables#exposing-environment-variables-to-the-browser), naming the variable as follows:
```
NEXT_PUBLIC_BASE_URL=http://localhost:5000/api
```## Hacking
It is suggested to use the project and storybook from the [component-library](component-library) directory to mock and develop components against.
```
cd component-library
npm run storybook
```