dictapi 0.1.1 copy "dictapi: ^0.1.1" to clipboard
dictapi: ^0.1.1 copied to clipboard

outdatedDart 1 only

APIs to communicate with DICT servers.

DICT.dart #

This package provides APIs to communicate with DICT servers.

From server-side applications it's possible to communicate directly with DICT servers via a dart:io socket, but it's also possible to use XHR to receive translations from a client-side application via the included HTTP server.

Because of the HTTP interface provided by this package you are not required to use dart. Any programming language which allows you to create HTTP requests and parse the JSON responses can be used.

Installation #

Simply add the dictapi package as a dependency to the pubspec.yaml file of your application and run the pub get command.

dependencies:
  dictapi: ^0.1.1

If you only want to set up the HTTP server, you can skip the step above and activate the dictapi package instead.

pub global activate dictapi

Usage #

Server-side #

If your code runs in the dart virtual machine, add the following import directive:

import 'package:dictapi/vm.dart';

Then you can connect to the DICT server using the DictConnection.connect method. The first argument is an URI pointing to the DICT server. The method returns a future which will complete with the instance of DictConnection once a connection has been established. If the optional named clientInfo argument is passed, the CLIENT command will be send first.

var uri = Uri.parse('dict://example.com:2628');
var dict = await DictConnection.connect(uri, clientInfo: 'My Dictionary');

Client-side #

If your code runs in the browser, add the following import directive:

import 'package:dictapi/web.dart';

Then create an instance of the DictXhr class and pass the base URI of the HTTP server to the constructor.

var uri = Uri.parse('http://example.com:8080');
var dict = new DictXhr(uri);

Common API #

The DictConnection and DictXhr classes both implement the DictApi interface. The components of your application which work independently of the target platform can import the following library

import 'package:dictapi/dictapi.dart';

to communicate with DICT servers.

HTTP interface #

To run the HTTP server change into your package directory and run the pub run dictapi serve command. If you've activated the dictapi package, run the pub global run dictapi serve instead.

By default the HTTP server listens for incoming requests on port 8080 and connects to the local DICT server on port 2628. You can pass command line arguments to change this behavior. Type pub [global] run dictapi serve --help to see a list of all available options.

When open a browser and and navigate to localhost on the configured port, e.g. http://localhost:8080. The server should respond with a list of available routes.

License #

DICT.dart is licensed under the MIT license agreement. See the LICENSE file for details.

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

APIs to communicate with DICT servers.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args, di, path, petitparser, quiver, redstone, resource, shelf

More

Packages that depend on dictapi