1.1.1 • Published 3 months ago

riscript v1.1.1

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
3 months ago

GitHub code size in bytes

RiScript: a scripting language for writers

RiScript is a minor language designed for writers working in computational media. It runs in a variety of environments, including the browser, Node, Observable, P5.js, Android and others. RiScript primitives (choices, symbols, gates, transforms, etc) can be used as part of any RiScript grammar or executed directly using evaluate(). RiScript is free/libre/open-source and integrates with RiTa.

For more documentation and examples see this interactive notebook on observable.

Installation

  • For esm: import { RiScript } from "https://esm.sh/riscript";
  • For browsers: <script src="https://unpkg.com/riscript"></script>
  • For node: $ npm install riscript
    let { RiScript } = require('riscript');
  • For developers

Example

import { RiScript } from "https://esm.sh/riscript";

let script = "[#name=[Jane | Bill]] was from [#place=[New York | Berlin]]."
  + " $name finds $place cold and wet in winter.";

let result = RiScript.evaluate(script);

console.log(result);

Developing

To install/build the library and run tests:

$ git clone https://github.com/dhowe/riscript.git
$ cd riscript 
$ npm install
$ npm run build 
$ npm test

If all goes well, you should see a list of successful tests and find the library built in 'dist'

Please make contributions via fork-and-pull - thanks!

About

 

Quick Start

A simple browser sketch

Create a new file on your desktop called 'test.html' with the following lines, save and drag it into a browser:

<html>
<script src="https://unpkg.com/riscript"></script>
<script>
  window.onload = function () {
    let script = "[#name=[Jane | Bill]] was from [#place=[New York | Berlin | Shanghai]]."
      + " $name finds $place cold and wet in winter.";
    let html = RiScript.evaluate(script);
    document.getElementById("content").innerHTML = html;
  };
</script>
<div id="content" width=200 height=200></div>
</html>

An ESM browser sketch

Create a new file on your desktop called 'test.html' with the following lines, save and drag it into a browser:

<html>
<body>
  <div id="content" width=200 height=200></div>
  <script type="module">

    import { RiScript } from "https://esm.sh/riscript";

    let script = "[#name=[Jane | Bill]] was from [#place=[New York | Berlin | Shanghai]]."
      + " $name finds $place cold and wet in winter.";
    let html = RiScript.evaluate(script);

    document.getElementById("content").innerHTML = html; 
  </script>
</body>
<html>

With p5.js

Create a new file on your desktop called 'test.html' with the following lines,, save and drag it into a browser:

<html>
  <script src="https://unpkg.com/p5"></script>
  <script src="https://unpkg.com/riscript"></script>
  <script>
  function setup() {

    createCanvas(600,200);
    background(245);
    textAlign(CENTER)
    textSize(18);

    let script = "[#name=[Jane | Bill]] was from [#place=[New York | Berlin | Shanghai]]."
      + " $name finds $place cold and wet in winter.";
    let result = RiScript.evaluate(script);
    text(result, 300, 100);

    createButton("refresh").mousePressed(() => location.reload());
  }
  </script>
</html>

With node.js and npm

To install: $ npm install riscript

let { RiScript }  = require('riscript');

let script = "[#name=[Jane | Bill]] was from [#place=[New York | Berlin | Shanghai]]."
  + " $name finds $place cold and wet in winter.";

let result = RiScript.evaluate(script);

console.log(result);

 

Contributors

Code Contributors

This project exists only because of the people who contribute. Thank you!

Financial Contributors

1.1.1

3 months ago

1.0.69

3 months ago

1.0.70

3 months ago

1.1.0

3 months ago

1.0.62

3 months ago

1.0.66

3 months ago

1.0.65

3 months ago

1.0.64

3 months ago

1.0.63

3 months ago

1.0.67

3 months ago

1.0.61

3 months ago

1.0.59

3 months ago

1.0.58

3 months ago

1.0.57

4 months ago

1.0.56

4 months ago

1.0.55

4 months ago

1.0.54

5 months ago

1.0.53

5 months ago

1.0.52

5 months ago

1.0.51

5 months ago

1.0.19

6 months ago

1.0.2

6 months ago

1.0.18

6 months ago

1.0.1

7 months ago

1.0.39

6 months ago

1.0.17

6 months ago

1.0.38

6 months ago

1.0.16

6 months ago

1.0.9

6 months ago

1.0.8

6 months ago

1.0.7

6 months ago

1.0.6

6 months ago

1.0.3

6 months ago

1.0.40

6 months ago

1.0.44

6 months ago

1.0.22

6 months ago

1.0.43

6 months ago

1.0.21

6 months ago

1.0.42

6 months ago

1.0.20

6 months ago

1.0.41

6 months ago

1.0.48

5 months ago

1.0.26

6 months ago

1.0.47

5 months ago

1.0.25

6 months ago

1.0.45

6 months ago

1.0.23

6 months ago

1.0.29

6 months ago

1.0.27

6 months ago

1.0.11

6 months ago

1.0.32

6 months ago

1.0.10

6 months ago

1.0.31

6 months ago

1.0.37

6 months ago

1.0.15

6 months ago

1.0.14

6 months ago

1.0.35

6 months ago

1.0.12

6 months ago

1.0.0

3 years ago