Skip to content

npmstudy/node-v20-helloworld

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published