stream 0.7.2+1 copy "stream: ^0.7.2+1" to clipboard
stream: ^0.7.2+1 copied to clipboard

outdatedDart 1 only

A Dart web server supporting request routing, filtering, template engine, file-based static resources and MVC design pattern.

#Stream

Stream is a Dart web server supporting request routing, filtering, template engine, file-based static resources and MVC design pattern.

Stream is distributed under an Apache 2.0 License.

Build Status

##Installation

Add this to your pubspec.yaml (or create it):

dependencies:
  stream:

Then run the Pub Package Manager (comes with the Dart SDK):

pub install

##Usage

###Compile RSP (Rikulo Stream Page) to dart files

There are two ways to compile RSP files into dart files: automatic building with Dart Editor or manual compiling.

RSP is a template technology allowing developers to create dynamically generated web pages based on HTML, XML or other document types (such as this and this). Please refer to here for more information.

###Build with Dart Editor

To compile your RSP files automatically, you just need to add a build.dart file in the root directory of your project, with the following content:

import 'dart:io';
import 'package:stream/rspc.dart';
void main() {
  build(new Options().arguments);
}

With this build.dart script, whenever your RSP is modified, it will be re-compiled.

###Compile Manually

To compile a RSP file manually, run rspc (RSP compiler) to compile it into the dart file with command line interface as follows:

dart bin/rspc.dart your-rsp-file(s)

A dart file is generated for each RSP file you gave.

##Notes to Contributors

###Fork Stream

If you'd like to contribute back to the core, you can fork this repository and send us a pull request, when it is ready.

Please be aware that one of Stream's design goals is to keep the sphere of API as neat and consistency as possible. Strong enhancement always demands greater consensus.

If you are new to Git or GitHub, please read this guide first.

8
likes
0
pub points
77%
popularity

Publisher

verified publisherquire.io

A Dart web server supporting request routing, filtering, template engine, file-based static resources and MVC design pattern.

Homepage

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

args, logging, meta, rikulo_commons

More

Packages that depend on stream