如何为Dart创建库?

时间:2012-04-14 21:41:59

标签: dart dartium

如何使用Dart创建库?

我想开始将我创建的一些JavaScript(和其他语言)库移植到Dart。

2 个答案:

答案 0 :(得分:10)

把它放在你的库文件中(第一名):

library mylibraryname;

然后您可以使用以下命令导入此lib:

import "path/to/mylibraryname.dart";

其他选项可用,例如part作为包含。

有关更深入的教程,我建议您blog post from Dartwatch

答案 1 :(得分:1)

stagehand是最简单的。

用法

mkdir fancy_project
cd fancy_project
stagehand package-simple

Stagehand模板

console-full - A command-line application sample.
package-simple - A starting point for Dart libraries or applications.
server-shelf - A web server built using the shelf package.
web-angular - A web app with material design components.
web-simple - A web app that uses only core Dart libraries.
web-stagexl - A starting point for 2D animation and games.

安装

如果要在命令行上使用Stagehand,请使用pub global activate安装它:

pub global activate stagehand