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
- Host: GitHub
- URL: https://github.com/thutasann/custom-scripting-language
- Owner: thutasann
- Created: 2024-05-18T16:50:12.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-31T13:26:55.000Z (12 months ago)
- Last Synced: 2025-01-06T15:48:03.597Z (5 months ago)
- Topics: interpreter, nodejs, typescript
- Language: TypeScript
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/