/node-v20-helloworld

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

nodejs-v20-helloworld

build status codecov

  • use Node.js v20 test runner
  • use c8 for coverage

Cli

$ npm i -g node-v20-helloworld
$ node-v20-helloworld liangqi
'Hello liangqi!'

Module

$ npm i --save node-v20-helloworld

usage

#! /usr/bin/env node
import { sayHi } from 'node-v20-helloworld';

async function main(){
	// 调用异步函数
	const person = process.argv[2];

	await sayHi(person);
}

main();

Test

// test
$ npm test

// watch some dir
$ npm run test:watch

// npm test -- --experimental-test-coverage
$ npm run test:coverage

License

MIT @ npmstudy