# nebula **Repository Path**: nebulaTeam/nebula ## Basic Information - **Project Name**: nebula - **Description**: 欢迎加入 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: feature - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 6 - **Forks**: 0 - **Created**: 2022-03-31 - **Last Updated**: 2022-06-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Introduction # Getting Started 1. 配置npm内网地址 ```sh yarn config set registry https://nexus.uihcloud.cn/repository/npm-group/ ``` 2. install mongodb 官网:https://www.mongodb.com/try/download/community?tck=docs_server 可视化工具:https://www.mongodb.com/try/download/compass - 通过compass创建database konBase 3. 常见问题 - Error: error:0308010C:digital envelope routines::unsupported 出现这个错误是因为 node.js V17版本中最近发布的OpenSSL3.0, 而OpenSSL3.0对允许算法和密钥大小增加了严格的限制,可能会对生态系统造成一些影响,先安装 17之前的版本,推荐使用[nvm](https://github.com/coreybutler/nvm-windows/releases) 下载安装nvm后, ```sh nvm install 14.17.0 nvm use 14.17.0 ``` 目前有些库还只支持node 14,最好使用 >14.16.0 4. 启动后端 ```bash yarn yarn dev open http://localhost:7001/graphql ``` 5. 启动前端 ```bash yarn yarn start open http://localhost:8000/ ``` # Build and Test TODO: Describe and show how to build your code and run the tests. # Contribute TODO: Explain how other users and developers can contribute to make your code better. If you want to learn more about creating good readme files then refer the following [guidelines](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-a-readme?view=azure-devops). You can also seek inspiration from the below readme files: - [ASP.NET Core](https://github.com/aspnet/Home) - [Visual Studio Code](https://github.com/Microsoft/vscode) - [Chakra Core](https://github.com/Microsoft/ChakraCore)