An open API service indexing awesome lists of open source software.

https://github.com/ymzuiku/source-log

Log code source line
https://github.com/ymzuiku/source-log

Last synced: 19 days ago
JSON representation

Log code source line

Awesome Lists containing this project

README

          

# source-log

Log code source line

## Install

```bash
npm install source-log --save
# or
pnpm add source-log
# or
yarn add source-log
```

## Use

```ts
import {sourceLog} from 'source-log"

sourceLog("hello");
```

Show this log:

```bash
src/some_test.ts:10:13
hello
```