# nts-recordmaker

> NHN Technology Services intern resume

Latest version **1.1.9** (published 2016-05-23) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install nts-recordmaker
pnpm add nts-recordmaker
yarn add nts-recordmaker
bun add nts-recordmaker
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.1.9 |
| Published | 2016-05-23 |
| First published | 2016-05-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | sanghaklee |
| Maintainers | sanghaklee |
| Keywords | NHN Technology Services, RecordMaker |

## Links

- npm: https://www.npmjs.com/package/nts-recordmaker
- Repository: https://github.com/SangHakLee/NTS-RecordMaker
- Homepage: https://github.com/SangHakLee/NTS-RecordMaker#readme
- Issues: https://github.com/SangHakLee/NTS-RecordMaker/issues
- npm.io page: https://npm.io/package/nts-recordmaker

## Alternatives

- [cli-color](https://npm.io/package/cli-color.md) — 3.4M weekly downloads
- [log](https://npm.io/package/log.md) — 1.3M weekly downloads
- [@luma.gl/experimental](https://npm.io/package/@luma.gl/experimental.md) — 77.1K weekly downloads
- [logstash-client](https://npm.io/package/logstash-client.md) — 4.5K weekly downloads
- [@nocobase/plugin-logger](https://npm.io/package/@nocobase/plugin-logger.md) — 2.0K weekly downloads

## Recent versions

- 1.1.9 (latest) — 2016-05-23
- 1.1.8 — 2016-05-21
- 1.1.7 — 2016-05-21
- 1.1.5 — 2016-05-21
- 1.1.4 — 2016-05-21
- 1.1.3 — 2016-05-16
- 1.1.2 — 2016-05-16
- 1.1.1 — 2016-05-16
- 1.1.0 — 2016-05-16
- 1.0.0 — 2016-05-15

## README

# 2016 NTS 인턴 문제

## Question
1. 사원번호와 성적을 출력하는 프로그램을 만드시오.
2. input : java RecordMaker [count]
3. output : NT00002 80
4. 사원번호에서 NT는 바뀔 수 없고, 뒤의 다섯 자리는 random 숫자. random 값이 99999 이하면 0으로 채움.(30이라면 NT00030)
5. 사원번호 중복 안됨.
6. ex : RecordMaker 3

	> NT00002 80

	> NT11206 85

	> NT01321 15


## Pre Requirements

### Node.js
##### On Mac OS
```
$ brew install node
```
##### On Ubuntu
```
$ sudo apt-get update
$ sudo apt-get install nodejs
$ sudo apt-get install npm
```
##### On Windows
https://nodejs.org/en/download/

## Installation
```
$ npm install nts-recordmaker
```

## Useage

####Test Useage
```
$ cd node_modules/nts-recordmaker
$ npm test 3
```

####Npm Useage
```js
var nts = require('nts-recordmaker');

var employee = nts.makeEmployeeNum(5);

console.log(employee); // returns [ 'NT00001 5', 'NT00012 10', 'NT00016 55', 'NT00123 15', 'NT00111 52']
```

## Demo
https://tonicdev.com/npm/nts-recordmaker
```js
var nts = require("nts-recordmaker")
nts.makeEmployeeNum(5)
```
<img src="https://s3.ap-northeast-2.amazonaws.com/sanghaklee/Tonic+%2B+npm%3A+nts-recordmaker+2016-05-21+13-36-01.jpg">

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