Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/conduit-dart/conduit
Dart HTTP server framework for building REST APIs. Includes PostgreSQL ORM and OAuth2 provider.
https://github.com/conduit-dart/conduit
dart null-safety orm postgres webserver
Last synced: 4 days ago
JSON representation
Dart HTTP server framework for building REST APIs. Includes PostgreSQL ORM and OAuth2 provider.
- Host: GitHub
- URL: https://github.com/conduit-dart/conduit
- Owner: conduit-dart
- License: bsd-2-clause
- Fork: true (stablekernel/aqueduct)
- Created: 2021-03-21T21:36:16.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-15T01:01:45.000Z (7 months ago)
- Last Synced: 2024-10-29T13:07:12.898Z (3 months ago)
- Topics: dart, null-safety, orm, postgres, webserver
- Language: Dart
- Homepage: https://theconduit.dev
- Size: 14 MB
- Stars: 449
- Watchers: 15
- Forks: 43
- Open Issues: 46
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[![Linux](https://github.com/conduit-dart/conduit/actions/workflows/linux.yml/badge.svg)](https://github.com/conduit-dart/conduit/actions/workflows/linux.yml) [![Windows](https://github.com/conduit-dart/conduit/actions/workflows/windows.yml/badge.svg)](https://github.com/conduit-dart/conduit/actions/workflows/windows.yml) [![Macos](https://github.com/conduit-dart/conduit/actions/workflows/macos.yml/badge.svg)](https://github.com/conduit-dart/conduit/actions/workflows/macos.yml) [](https://discord.gg/MHz5cqktHW)
[![melos](https://img.shields.io/badge/maintained%20with-melos-f700ff.svg?style=flat-square)](https://github.com/invertase/melos)Conduit is a fork of Stablekernel's Aqueduct, a modern Dart HTTP server framework.
## Getting Started
1. [Install Dart](https://www.dartlang.org/install).
2. Activate Conduit.
```
dart pub global activate conduit
```
3. Create a new project.
```
conduit create my_project
```
4. Serve the project.
```
cd my_project
conduit serve
```## Tutorials, Documentation and Examples
We are currently in the process of collating helpful resources for your edification. Our main docs live [here](https://docs.theconduit.dev/).
Conduit is a close fork to Aqueduct, so Aqueduct examples can be tweaked to work with Conduit [here](https://github.com/stablekernel/aqueduct_examples). The major concern is updating the code to use null-safety.
## Contributors