jaguar是一款dart后端框架
首先运行
dart pub global activate jaguar
idea新建项目
选择Simple Console Application
修改pubspec.yaml
dependencies:
jaguar: ^3.0.10
然后点一下pub get
在main.dart里面写
import 'package:jaguar/jaguar.dart';
main()=>new Jaguar()
..staticFile('/', 'static/index.html')
..staticFiles('/static/*', 'static')
..log.onRecord.listen(print)
..serve(logRequests: true);
在项目根目录里建立一个static文件夹