# jdoodlecoderunner

> Run programs using jdoodle compiler

Latest version **1.0.1** (published 2021-04-12) · ISC license · 0 weekly downloads

## Install

```sh
npm install jdoodlecoderunner
pnpm add jdoodlecoderunner
yarn add jdoodlecoderunner
bun add jdoodlecoderunner
```

## 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.1 |
| Published | 2021-04-12 |
| First published | 2021-04-12 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.8 KB |
| Known vulnerabilities | 0 (+23 in 1 direct dependencies) |
| Install scripts | no |
| Author | Abhiram Pai |
| Maintainers | abhiram_pai |
| Keywords | node, npm, jdoodle, axios |

## Links

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

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^0.21.1

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2021-04-12
- 1.0.0 — 2021-04-12

## README

# jdoodleCodeRunner

Run programs using jdoodle compiler

## Installation

```js
# using npm
npm install jdoodlecoderunner

# using yarn
yarn add jdoodlecoderunner
```

## Usage

```js
# using require
const codeRunner = require('jdoodlecoderunner');

# using import
import codeRunner from 'jdoodlecoderunner';
```

## Example

### Using promises:

```js
codeRunner.runCode(
 fileUrl,
 python3,
 3,
 41,
 clientId,
 clientSecret
).then((output) => console.log(output));
```

### Using async/await:

```js
const output = await codeRunner.runCode(
 fileUrl,
 python3,
 3,
 41,
 clientId,
 clientSecret
)
console.log(output)
```
refer https://github.com/Pai026/coderBot/

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