An open API service indexing awesome lists of open source software.

https://github.com/thutasann/custom-scripting-language

building custom scripting language with typescript from scratch
https://github.com/thutasann/custom-scripting-language

interpreter nodejs typescript

Last synced: 3 months ago
JSON representation

building custom scripting language with typescript from scratch

Awesome Lists containing this project

README

        

# Building Custom Scripting Language

This is the repo where Custom Scripting language is created from scratch with typescript.

## Topics

- Lexer
- AST Definitions
- Parser
- Interpreter
- Enviornment & Variable Storage

## Scripts

```bash
npx tsx
```

## Running the Task

- Open the Command Palette (Ctrl+Shift+P or Cmd+Shift+P on Mac).
- Type Run Task and select Tasks: Run Task.
- Choose Build TypeScript from the list.

## Sources

- https://astexplorer.net/
- https://www.toppr.com/guides/computer-science/computer-fundamentals/system-software/interpreter/