DChisel Dart Framework DChisel is simple Dart Framework for creating REST API Features Custom host server and port GET, POST, PUT, DELETE, PATCH Routes ORM CRUD to PostgreSQL Usage To add the dchisel to your Dart application read the install instructions. Host Server Default host is “localhost” and port 8000 import ‘package:dchisel/dchisel.dart’; Future<void> main(List<String> arguments) async { ..
Category : Rest API
WooCommerce SDK for Dart A dart package to interact with the WooCommerce API. It uses OAuth1.0a behind the scenes to generate the signature and URL string. It then makes calls and return the data back to the calling function. Examples GET request (Fetch products) Future getProducts() async { // Initialize the API WooCommerceAPI wooCommerceAPI = ..
A library for building REST APIs easily with Dart modeled after Express JS for Node Js. The library is still a work in progress and open to contribution. Created with StageHand – license. Inspiration Our inspiration is the simplicity of express js . Installing Add the following to your pubspec.yaml file: dependencies: sevr: any Usage A simple usage example: import ..