Skip to content

Commit

Permalink
Update init text and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sansmoraxz committed May 17, 2024
1 parent a957940 commit 179724f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
An online editor for lua scripts.

Features the following technologies:-
- Vite
- React PWA
- Tailwind CSS
- Monaco Editor
- Webassembly
- Vite (For building the project)
- Bun.js (This is claimed to be a faster than Node.js, they were not lying)
- React (With PWA Service worker support through Vite plugin)
- Tailwind CSS (For styling)
- Monaco Editor (The VSCode based editor)
- Webassembly (For compiling and running the lua scripts)


Fully offline support, you can use this editor without internet connection. Compiler and linter are running completely on your browser.
3 changes: 3 additions & 0 deletions src/CodeEditorWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ const defaultCode = `-- What's this? A Lua editor?
--
-- Return values are printed to the output window.
-- Logs are printed to the logs window.
-- For details about the compilation process for lua, check https://www.lua.org/pil/8.html
`;

type CodeEditorWindowProps = {
Expand Down

0 comments on commit 179724f

Please sign in to comment.