puzzlelang

0.0.973 • Public • Published

PUZZLE

Node.js Package

puzzle

PUZZLE as an abstract, extendable programming language.

Important: The puzzle project is in early stage and under development. It's not yet production ready. If you'd like to contribute to the code or the module ecosystem, feel free to open a PR.

Example

// Output something
print 'Welcome future puzzle developer!';

// Include a thrid party module (local or remote)
use 'https://url.com/module.js';

// stora a variable
set name Test;

Get started

PUZZLE runs on JavaScript Engines and can be used on Node, Browsers and via it's CLI.

Install

$ npm i puzzlelang --global

Interactive Shell (CLI)

$ puzzle
$ print "Hello World!"
"Hello World"

Run a File

// hello.puzzle
print "I am a puzzle file"
$ puzzle run hello.puzzle
"I am a puzzle file"

Embedded (JavaScript)

puzzle scripts can also be run inside JavaScript

Node

puzzle.parse('print "Hello, I am embedded"')

Browsers

<script src="https://cdn.jsdelivr.net/npm/puzzlelang@latest/puzzle.browser.js">
// For Node.js
const puzzle = require('puzzlelang');

// For browsers:
<script src="puzzle.js"/>
<script type="text/x-puzzle">
  print "hello from the browser!";
</script>

Contribute

You are welcome to contribute to the puzzle language and ecosystem. Make sure you familiarize yourself with the Contribution Guidelines before opening a PR or Issue.

License

PUZZLE is open source and released under the MIT License.

See the license

Copyright (c) M. Boelling

Readme

Keywords

none

Package Sidebar

Install

npm i puzzlelang

Weekly Downloads

27

Version

0.0.973

License

MIT

Unpacked Size

961 kB

Total Files

17

Last publish

Collaborators

  • marcoboelling