# native-console

> Print text on screen and read string from keyboard

Latest version **1.0.3** (published 2016-10-28) · ISC license · 0 weekly downloads

## Install

```sh
npm install native-console
pnpm add native-console
yarn add native-console
bun add native-console
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2016-10-28 |
| First published | 2016-10-25 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| Maintainers | samuelnovaes |
| Keywords | cin, cout, scanf, printf, keyboard, input, output, console, write, writeline, readline, read |

## Links

- npm: https://www.npmjs.com/package/native-console
- npm.io page: https://npm.io/package/native-console

## Alternatives

- [@sapphire/ratelimits](https://npm.io/package/@sapphire/ratelimits.md) — 4.4K weekly downloads
- [js-csvparser](https://npm.io/package/js-csvparser.md) — 2.0K weekly downloads
- [@adadapted/js-sdk](https://npm.io/package/@adadapted/js-sdk.md) — 251 weekly downloads
- [@grapecity/spread-sheets-sparklines](https://npm.io/package/@grapecity/spread-sheets-sparklines.md) — 103 weekly downloads
- [@1selfworld/adchain-sdk-react-native](https://npm.io/package/@1selfworld/adchain-sdk-react-native.md) — 80 weekly downloads

## Recent versions

- 1.0.3 (latest) — 2016-10-28
- 1.0.2 — 2016-10-25
- 1.0.1 — 2016-10-25
- 1.0.0 — 2016-10-25

## README

# How to install

```sh
$ npm install native-console
```

# How to use

```javascript
//To import module
var c = require("native-console");

//To write
c.write("Hello World!");

//To read from keyboard
var input = c.read();
```

# Example

```javascript
var c = require("native-console");
c.write("Write something: ");
var text = c.read();
c.write("You wrote: "+text);
```

---
_Source: https://npm.io/package/native-console · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
