Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kevinshih-689/backstage

Specialized technology portal for developers
https://github.com/kevinshih-689/backstage

docker express nodejs postgresql reactjs storybook typescript yarn

Last synced: 20 days ago
JSON representation

Specialized technology portal for developers

Awesome Lists containing this project

README

        

# [Backstage](https://backstage.io)

## Develop
### Environments
* #### Node
```
v18.16.0
```
* #### NPM
```
v9.5.1
```
* #### yarn
```
v1.22.21
```
### How to Start
###### Before you start, make sure the version of nodeJS in your environment is v18.16.0. You can use command below to switch version by using `nvm`
```sh
$ nvm use
```

```sh
$ yarn install
$ yarn dev
```
#### Trouble Shooting
* ##### Export `useSyncExternalStore` was not found in `react`
###### 👎 If you get the bad feedback when you execute `yarn dev`

![Alt text](./readme-images/readme-01.png)
###### Solution:
* ###### Open ` package.json ` file of the root path
* ![Alt text](./readme-images/readme-02.png)
* ###### Re-install
```shell
$ yarn install
```
* ###### Repeat to verify that the problem is solved
```shell
$ yarn dev
```
### Component
###### To view all the components you can import by following this [link](https://backstage.io/storybook/?path=/story/plugins-examples--plugin-with-data)

## Deploy
###### For a complete step-by-step guide, please refer to this [link](https://github.com/KevinShih-689/note/blob/main/learning-note/backstage/backstage.md#deploy).