RoboDurden / MinIDE

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MinIDE, a minimal IDE based on CodeMirror

  • Simply copy the MinIDE folder into your project
  • your index.htm should look like
<html>
<head>
  <title>MinIDE - the minimal IDE :-)</title>
  <meta charset="utf-8"/>
 </head>
<body>
  <div id="IDE" style="width:90vw;height:80vh;border:1px solid grey;"></div>

  <script src="MinIDE/MinIDE.js"></script>
  <script>
    var oIDE = new MinIDE("IDE");
  </script>

  <a href="javascript:alert(oIDE.GetValue());">Compile</a>
</body>
</html>
  • the width and height of the container must be specified in absolute browser width/height percentage vw/vh :-(

  • the root folder, white list, etc. can be set in MinIDE/config.php

About

License:MIT License


Languages

Language:JavaScript 44.0%Language:PHP 37.7%Language:CSS 13.2%Language:HTML 3.5%Language:Hack 1.6%