vovgou / ClearScriptForUnity3d

A library for adding scripting to .NET applications. Supports V8 (Windows, Linux, macOS) and JScript/VBScript (Windows).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

ClearScript is a library that makes it easy to add scripting to your .NET applications. It currently supports JavaScript (via V8 and JScript) and VBScript.

Features

  • Simple usage; create a script engine, add your objects and/or types, run scripts
  • Support for several script engines: Google's V8, Microsoft's JScript and VBScript
  • Exposed resources require no modification, decoration, or special coding of any kind
  • Scripts get simple access to most of the features of exposed objects and types:
    • Methods, properties, fields, events
    • (Objects) Indexers, extension methods, conversion operators, explicitly implemented interfaces
    • (Types) Constructors, nested types
  • Full support for generic types and methods, including C#-like type inference and explicit type arguments
  • Scripts can invoke methods with output parameters, optional parameters, and parameter arrays
  • Script delegates enable callbacks into script code
  • Support for exposing all the types defined in one or more assemblies in one step
  • Optional support for importing types and assemblies from script code
  • The host can invoke script functions and access script objects directly
  • Full support for script debugging
  • (V8) Support for fast data transfer to and from JavaScript typed arrays
  • (V8) Support for JavaScript modules
  • (JavaScript) Support for CommonJS modules
  • πŸ†• (V8) Automatic conversion between .NET BigInteger and JavaScript BigInt.
  • πŸ†• (V8) Optional automatic conversion between .NET DateTime and JavaScript Date.
  • πŸ†• (V8) Optional automatic conversion between .NET tasks and JavaScript promises.
  • πŸ†• Support for .NET Core 3.1 and .NET 5.0 on Windows (x86/x64/arm64), Linux (x64/arm64), and macOS (x64).

Installation

Composite packages

  • ClearScript
  • ClearScript.win-arm64
  • ClearScript.linux-x64
  • ClearScript.linux-arm64
  • ClearScript.osx-x64

Component packages

  • ClearScript.Core
  • ClearScript.Windows.Core
  • ClearScript.Windows
  • ClearScript.V8

V8 native assembly packages

  • ClearScript.V8.Native.win-x86
  • ClearScript.V8.Native.win-x64
  • ClearScript.V8.Native.win-arm64
  • ClearScript.V8.Native.linux-x64
  • ClearScript.V8.Native.linux-arm64
  • ClearScript.V8.Native.osx-x64

Miscellaneous packages

  • Microsoft.ClearScript.V8.ICUData

Documentation

About

A library for adding scripting to .NET applications. Supports V8 (Windows, Linux, macOS) and JScript/VBScript (Windows).

License:MIT License


Languages

Language:C# 87.6%Language:C++ 9.8%Language:CMake 1.0%Language:Shell 0.5%Language:JavaScript 0.4%Language:Batchfile 0.4%Language:Makefile 0.1%Language:PowerShell 0.1%Language:VBScript 0.1%Language:C 0.0%