1.0.7 • Published 2 years ago

node-v20-helloworld v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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

1.0.7

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago