@0ria/addlogging 中文文档教程

发布于 3年前 浏览 20 项目主页 更新于 3年前

Espree-Logging module

一个为作业创建的小型库,它有一些方法可以添加 console.log() ,在 nodejs 中输入时显示函数的名称和一些信息。

Instalation

npm install @0ria/addlogging --save

Usage

let espreelog = require('@0ria/addlogging');

const input = `
let result = function foo(a, b) {
  let x = 'blah';
}
foo(1, 'wut', 3);
`;

const output = espreelog.addLogging(input);
console.log(`input:\n${input}\n---`);
console.log(`output:\n${output}\n---`);

Tests

npm test

Contributing

代替正式的风格指南,注意维护现有的编码风格。 为任何新的或更改的功能添加单元测试。 Lint 并测试您的代码。

Release History

  • 0.1.0 Initial release

Espree-Logging module

A small library created for an assignment that has some methods to add a console.log() showing the name and some info about a function when entering to it in nodejs.

Instalation

npm install @0ria/addlogging --save

Usage

let espreelog = require('@0ria/addlogging');

const input = `
let result = function foo(a, b) {
  let x = 'blah';
}
foo(1, 'wut', 3);
`;

const output = espreelog.addLogging(input);
console.log(`input:\n${input}\n---`);
console.log(`output:\n${output}\n---`);

Tests

npm test

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Release History

  • 0.1.0 Initial release
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文