npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

piston-js

v0.0.6

Published

[![PR's Welcome][pr-welcoming-image]][pr-welcoming-url]

Downloads

4

Readme

PR's Welcome

A JavaScript client for Piston-Batch, A fork from Piston, a high performance general purpose code execution engine that supports batch submissions and code evaluation.

Contains Full TypeScript Typings

 

Installation

$ npm install piston-js

Basic Usage

import Piston from 'piston-js';

(async () => {
  const piston = new Piston('https://pistonserver.com');
  try {
    const result: SubmissionResult = await piston.run({
      language: {
        name: 'python',
        version: '3.9.1',
      },
      fileName: 'main.py',
      sourceCode: 'print(int(input())*3)',
      input: ['2'],
      expectedOutput: ['4'],
    });
    console.log(result);
    /*{
     run: [ { stdout: '6', stderr: '', code: 0, signal: null, stdin: '2' } ],
     verdict: { status: 'WA', stdout: '6', stdin: '2', expected_output: '4' }
    } */
  } catch (err) {
    console.log(err.response.data);
  }
})();

API

Piston(config: PistonConfig) : Piston

Returns an instance of Piston

PistonConfig

An object type representing the config for the Piston instance

properties

| Property | Type | Description |Default | | ------------- |:-------------:|-------------|--------------| | baseURL |string | the base url of the piston server | - | | apiKey | string? | the api key used to access the piston server |"" | | apiKeyHeader | string? | name of the api key header | ""|

Piston.run(submission: Submission) : Promise< SubmissionResult>

Runs a submission and returns the result

Submission

An object representing a submission

properties

| Property | Type | Description |Default | | ------------- |:-------------:|-------------|--------------| | sourceCode |string | the source code to execute | - | | language | Language | the programming language to execute |- | | fileName | string | name of the file to execute, 'e.g: Main.java'. Some languages like Java need files to have the same name as the Main class. |- | | input? | string[] | batch stdin to execute | [""]| | expectedOutput? |string[] | if provided, the execution will be evaluated against all stdout resulted from input. if provided, must have equal length to input | null| | runTimeout? | number |milliseconds before timing out the program (TLE) | 3000 | | compileTimeout? | number |milliseconds before timing out the compilation of the source code (applies only to compiled languages) (TLE) | 10000 |

Language

Type of Language required in Submission

properties

| Property | Type | Description |Default | | ------------- |:-------------:|-------------|--------------| | name |string | name of the language | - | | version | string | version of the language |- |

SubmissionResult

An object representing the result of a Submission

properties

| Property | Type | Description | | ------------- |:-------------:|-------------| | compile? | ProcessOutput | only available in compiled languages | - | | run | ProcessOutput | result of each individual stdin in the batch | | result | BatchResult | Final result of the submission batch after evaluation |

ProcessOutput

Type of an execution process output

properties

| Property | Type | Description | | ------------- |:-------------:|-------------| | stdin |string | process stdin | | stdout |string | process stdout | | stderr |string | process stderr | | code |number | process return code | | signal |string | process signal |

BatchResult

Type of an execution process output

properties

| Property | Type | Description | | ------------- |:-------------:|-------------| | status |Verdict | submission evaluation verdict| | stdout |string | stdout of the first failed submission in the batch | | stdin |string | stdin of the first failed submission in the batch | | expectedOutput |string |expected output of the first failed submission in the batch | | signal |string | process signal |

  • A submission is considered a failed submission in the batch if its Verdict is not accepted (AC)
  • If a submission batch is accepted, stdout and stdin will have the results of the first submission in the batch

Verdict

An enum representing the verdict of a submission as strings

| Property | Value | description | | ----------- | :-------------: | ----------------------------------------------------------- | | AC | 'AC' | The source code executed successfully/passed all test cases | - | | COMPILATION | 'COMPILATION' | Compilation error | - | | ERROR | 'ERROR' | An error during the whole execution process | | MLE | 'MLE' | Memory limit exceeded (NOT YET IMPLEMENTED) | | PENDING | 'PENDING' | Submission is pending | | RUNTIME | 'RUNTIME' | Runtime error | | TLE | 'TLE' | Time limit exceeded (timedout) | | WA | 'WA' | Wrong answer (Failed test cases) |