1.0.7 • Published 7 months ago

node-v20-helloworld v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
7 months 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

7 months ago

1.0.5

8 months ago

1.0.4

8 months ago

1.0.3

8 months ago

1.0.2

8 months ago

1.0.1

8 months ago