purescript

0.15.15 • Public • Published

PureScript npm package

npm version Build Status

PureScript binary wrapper that makes it seamlessly available via npm

Prerequisites

This package makes maximum use of postinstall script, so please make sure that ignore-scripts npm-config is not enabled before installation.

$ npm config get ignore-scripts
false

Installation

Use npm.

npm install purescript

Once the command above is executed,

1. First, it checks if a PureScript binary has been already cached, and restores that if available.

2. The second plan: if no cache is available, it downloads a prebuilt binary from the PureScript release page.

3. The last resort: if no prebuilt binary is provided for your platform or the downloaded binary doesn't work correctly, it downloads the PureScript source code and compile it with Stack.

API

require('purescript')

Type: string

An absolute path to the installed PureScript binary, which can be used with child_process functions.

const {execFile} = require('child_process');
const purs = require('purescript'); //=> '/Users/you/example/node_modules/purescript/purs.bin'

execFile(purs, ['compile', 'input.purs', '--output', 'output.purs'], () => {
  console.log('Compiled.');
});

CLI

You can use it via CLI by installing it globally.

npm install --global purescript

purs --help

License

ISC License © 2017 - 2019 Watanabe Shinnosuke

Dependents (10)

Package Sidebar

Install

npm i purescript

Weekly Downloads

1,485

Version

0.15.15

License

ISC

Unpacked Size

4.43 kB

Total Files

5

Last publish

Collaborators

  • natefaubion
  • joneshf
  • kl0tl
  • goodacre.liam
  • garyb
  • hdgarrood
  • kritzcreek
  • purefunctor
  • jalexm
  • thomashoneyman
  • purescript-npm