# kotlinc-js

> KotlincJS compiler wrapper for NodeJS

Latest version **1.1.1** (published 2017-10-09) · Apache-2.0 license · 0 weekly downloads

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

## Install

```sh
npm install kotlinc-js
pnpm add kotlinc-js
yarn add kotlinc-js
bun add kotlinc-js
```

## Health

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

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2017-10-09 |
| First published | 2017-06-08 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2465 |
| Author | Andrey Skladchikov |
| Maintainers | jetbrains-buildserver, princed, huston007 |
| Keywords | Kotlin, Node, Kotlinc, Compiler |

## Links

- npm: https://www.npmjs.com/package/kotlinc-js
- Repository: https://github.com/JetBrains/create-react-kotlin-app
- Homepage: https://github.com/JetBrains/create-react-kotlin-app#readme
- Issues: https://github.com/JetBrains/create-react-kotlin-app/issues
- npm.io page: https://npm.io/package/kotlinc-js

## Dependencies (1)

- [kotlin-compiler](https://npm.io/package/kotlin-compiler.md) ^1.1.51

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 1.1.1 (latest) — 2017-10-09
- 1.0.6 — 2017-10-06
- 1.0.5 — 2017-10-04
- 1.0.4 — 2017-06-28
- 1.0.3 — 2017-06-22
- 1.0.2 — 2017-06-20
- 1.0.1 — 2017-06-09
- 1.0.0 — 2017-06-08

## README

# kotlinc-js

A node wrapper for kotlinc-js compiler.

## Installation

```bash
npm i kotlinc-js --save
```

## Usage

```js
const kotlinCompiler = require('../kotlin-compiler');

kotlinCompiler
  .compile({
    output: './build/dist.js',
    sources: [__dirname + '/src'],
    sourceMaps: true,
    moduleKind: 'commonjs',
    libraries: [
      'path/to/some.meta.js',
    ],
  })
  .then(() => console.log('Compiled!'));
```

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