Skip to content

Latest commit

 

History

History

server

GraphQL API Server

Node.js backend server with GraphQL API.

Tech Stack

Directory Layout

.
├── core/                       # Common application modules
├── schema/                     # GraphQL schema definitions
├── Dockerfile                  # Docker configuration for Cloud Run
├── global.d.ts                 # TypeScript definition overrides
├── graphql.ts                  # GraphQL API schema
├── index.ts                    # uWebSockets web server
├── package.json                # Node.js dependencies and scripts
├── start.ts                    # Launch script for development
├── tsconfig.json               # TypeScript configuration
└── vite.config.ts              # Bundler configuration

Getting Started

Launch the app by running:

$ yarn workspace server start   # Or, `yarn server:start`

It should become available at http://localhost:8080/

License

Copyright © 2014-present Kriasoft. This source code is licensed under the MIT license found in the LICENSE file.