Skip to content

An IDE for the Ohm language (JavaScript edition)

License

Notifications You must be signed in to change notification settings

mastermakrela-rwth/ohm-editor

 
 

Repository files navigation

Ohm Editor

Build Status Live demo

A standalone editor for the Ohm language.

Usage

Clone this repository and run npm install in the project root.

To run the editor in the browser:

npm start

Development Notes

  • To deploy from your local repository to https://ohmlang.github.io/editor/, use bin/deploy-gh-pages.sh. When the script shows the following prompt:

      Do you want to deploy to ohmlang.github.io (y/n)?
    

    ...you can test things locally by switching to your clone of ohmlang.github.io and running the following command in the repository root:

      python -c "import SimpleHTTPServer; m = SimpleHTTPServer.SimpleHTTPRequestHandler.extensions_map; m[''] = 'text/plain'; m.update(dict([(k, v + ';charset=UTF-8') for k, v in m.items()])); SimpleHTTPServer.test();"
    

    This will serve the contents of the ohmlang.github.io site locally.

Playwright tests

E2E tests are configured to run on every commit to main and each pull request. They can also be run locally via npm run test:e2e.

To update snapshots: create a pull request on a branch whose name begins with the prefix update-snapshots/. This will trigger the Playwright workflow (see playwright.yml) to run with the --update-snapshots option and then commit the results to the original branch. If all looks good, you can then merge the PR to main.

About

An IDE for the Ohm language (JavaScript edition)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 62.3%
  • Vue 23.7%
  • CSS 10.1%
  • HTML 2.9%
  • Shell 1.0%