Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angel-dart/angel
[ARCHIVED] A polished, production-ready backend framework in Dart for the VM, AOT, and Flutter.
https://github.com/angel-dart/angel
angel angel-framework dart dart-web framework server web websocket-server
Last synced: 3 months ago
JSON representation
[ARCHIVED] A polished, production-ready backend framework in Dart for the VM, AOT, and Flutter.
- Host: GitHub
- URL: https://github.com/angel-dart/angel
- Owner: angel-dart
- License: mit
- Archived: true
- Created: 2016-02-28T12:11:51.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-26T16:33:37.000Z (over 3 years ago)
- Last Synced: 2024-09-21T16:02:20.994Z (3 months ago)
- Topics: angel, angel-framework, dart, dart-web, framework, server, web, websocket-server
- Language: Dart
- Homepage: https://angel-dart.dev/
- Size: 39.6 MB
- Stars: 1,060
- Watchers: 45
- Forks: 67
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-dart - angel - An easily-extensible web server framework in Dart. (Libraries / Server Frameworks)
README
# ARCHIVED
Angel is no longer being maintained. You can read my reasons for discontinuing the project here: https://www.reddit.com/r/dartlang/comments/h0z413/looks_like_the_angel_webbackend_framework_wont_be/ftpaxmo/At the moment, there is one fork of Angel that adds null-safety support. If you intend to upgrade
existing Angel projects to the more recent versions of Dart, then it's your best bet.The fork can be found here: https://github.com/dukefirehawk/angel
Existing Angel projects have three options:
* Remain on an older version of the Dart VM
* Use the forked versions of the packages to support null-safety
* Switch to a new framework, and/or languageThanks for 4 years. It was a fun ride, but it's time for me to move on. :wave:
---
[![The Angel Framework](https://angel-dart.github.io/assets/images/logo.png)](https://angel-dart.dev)
[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/angel_dart/discussion)
[![Pub](https://img.shields.io/pub/v/angel_framework.svg)](https://pub.dartlang.org/packages/angel_framework)
[![Build status](https://travis-ci.org/angel-dart/framework.svg?branch=master)](https://travis-ci.org/angel-dart/framework)
![License](https://img.shields.io/github/license/angel-dart/framework.svg)**A polished, production-ready backend framework in Dart.**
-----
## About
Angel is a full-stack Web framework in Dart. It aims to
streamline development by providing many common features
out-of-the-box in a consistent manner.With features like the following, Angel is the all-in-one framework you should choose to build your next project:
* GraphQL Support
* PostgreSQL ORM
* Dependency Injection
* Static File Handling
* And much more...See all the packages in the `packages/` directory.
## Installation & Setup
Once you have [Dart](https://www.dartlang.org/) installed, bootstrapping a project is as simple as running a few shell commands:
Install the [Angel CLI](https://github.com/angel-dart/cli):
```bash
pub global activate angel_cli
```Bootstrap a project:
```bash
angel init hello
```You can even have your server run and be *hot-reloaded* on file changes:
```bash
dart --observe bin/dev.dart
```Next, check out the [detailed documentation](https://docs.angel-dart.dev/v/2.x) to learn to flesh out your project.
## Examples and Documentation
Visit the [documentation](https://docs.angel-dart.dev/v/2.x)
for dozens of guides and resources, including video tutorials,
to get up and running as quickly as possible with Angel.Examples and complete projects can be found
[here](https://github.com/angel-dart/examples-v2).You can also view the [API Documentation](http://www.dartdocs.org/documentation/angel_framework/latest).
There is also an [Awesome Angel :fire:](https://github.com/angel-dart/awesome-angel) list.
## Contributing
Interested in contributing to Angel? Start by reading the contribution guide [here](CONTRIBUTING.md).