node_interop 1.0.2 copy "node_interop: ^1.0.2" to clipboard
node_interop: ^1.0.2 copied to clipboard

outdated

Provides Dart bindings and utility functions for core Node.js modules.

example/main.dart

// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

import 'dart:convert';

import 'package:node_interop/fs.dart';
import 'package:node_interop/node.dart';

/// Simple example of reading contents of current working directory and
/// printing out as nicely indented JSON.
void main() {
  final contents = List<String>.from(fs.readdirSync(process.cwd()));
  final json = new JsonEncoder.withIndent('  ');
  print(json.convert(contents));
}
47
likes
0
pub points
95%
popularity

Publisher

unverified uploader

Provides Dart bindings and utility functions for core Node.js modules.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

js

More

Packages that depend on node_interop