Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

computebasic

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

computebasic

ComputeBasic is a simple script language for amateurs, compiled as JavaScript.

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

ComputeBasic

npm version npm version License node GitHub issues GitHub Releases GitHub Pre-Releases

ComputeBasic is a simple script language for amateurs, compiled as JavaScript.

Installation

SystemJS

You need to reference Systemjs first and then import the index.js file like this:

<script src="//cdn.jsdelivr.net/npm/systemjs@0.21.6/dist/system.js"></script>
<script>
    System.config({
        packages: {
            './dist': {
                defaultExtension: 'js'
            }
        }
    });
    System.import('./dist/index');
</script>

For example:

<script>
    System.import('https://cdn.jsdelivr.net/npm/computebasic@x.x.x/dist/index.min');
</script>

Which will reflect the latest version as soon as it is published to npm. You can also browse the source of the npm package at https://cdn.jsdelivr.net/npm/computebasic/.

Also available on unpkg.

NPM

In the Node.js environment, you can install directly using NPM:

$ npm i computebasic --save

Or install the developing (unstable) version for newest features:

$ npm i computebasic@dev --save

Test

Test in the browser, visit "test/index.html". Test in Nodejs, please execute "node test.node.js" in the "dist" directory.

Click here to visit online.

Changelog

Changelog

License

This library is published under Apache-2.0 license.

Keywords

FAQs

Package last updated on 25 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc