Last updated:
0 purchases
node io
node_io #
This library exposes Node I/O functionality in dart:io way. It wraps Node.js
I/O modules (like fs and http) and implements them using abstractions
provided by dart:io (like File, Directory or HttpServer).
If you are looking for direct access to Node.js API see node_interop
package.
Usage #
A basic example of accessing file system:
import 'package:node_io/node_io.dart';
void main() {
print(Directory.current);
print("Current directory exists: ${Directory.current.existsSync()}");
print('Current directory contents: ');
Directory.current.list().listen(print);
}
copied to clipboard
FileSystem API #
This package provides a nodeFileSystem field that implements the file
package's FileSystem API. This makes it possible to configure APIs written
to work with generic filesystems to work with node_io in particular.
Configuration and build #
Add build_node_compilers and build_runner to dev_dependencies section
in pubspec.yaml of your project:
dev_dependencies:
build_runner: # needed to run the build
build_node_compilers:
copied to clipboard
Add build.yaml file to the root of your project:
targets:
$default:
sources:
- "node/**"
- "test/**" # Include this if you want to compile tests.
- "example/**" # Include this if you want to compile examples.
copied to clipboard
By convention all Dart files which declare main function go in node/ folder.
To build your project run following:
pub run build_runner build --output=build/
copied to clipboard
Detailed instructions can be found in build_node_compilers package docs.
Features and bugs #
Please file feature requests and bugs at the issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.