A rudimentary WebGL fragment shader editor and viewer.
The application requires an HTTP server to function.
To run the server, you need to run two commands.
- Navigate to the folder containing the
server.js
file in File Explorer. - Hold down Shift and press right click, it should open the context menu.
- If you have permission on the machine to open PowerShell, you should see a '
Open PowerShell window here
' option. Click on it to open PowerShell. - Type the commands below into the PowerShell prompt.
- Click the Spotlight Search button in the menu bar.
- Type in '
console.app
'. - Open the terminal, and type the commands below into it.
- It varies from distro to distro, but the shortcut to open the terminal is usually
Ctrl+Shift+T
orCtrl+Alt+T
. - Type the commands below into it.
Make sure your terminal is in the same directory as the server.js
file of the application.
npm install
: This installs all the necessary dependencies of the application.npm start
: This starts the HTTP server for the application.
After the HTTP server is started, go to http://localhost:5501/.
- Add GLSL syntax highlighting
- Add animation capabilities