Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rakannimer/universal-console

Use your browser's console from NodeJS, React Native or Electron
https://github.com/rakannimer/universal-console

Last synced: 7 days ago
JSON representation

Use your browser's console from NodeJS, React Native or Electron

Awesome Lists containing this project

README

        

## Universal Console

Use your favorite browser's console from NodeJS, React Native or Electron

## Install

```sh
yarn add -D universal-console
```

## Usage

```typescript
import uc from "universal-console";

uc.log(1, 2, { foo: 'bar' });

uc.warn(1, 2, { foo: 'bar' });

uc.error(1, 2, { foo: 'bar' });

```

And check your logs on http://localhost:7331