forked from fkling/astexplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.23 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>JavaScript AST explorer</title>
<meta name="description" content="An online JavaScript AST explorer using esprima-fb.">
<link rel="stylesheet" href="css/codemirror.css">
<link rel="stylesheet" href="css/foldgutter.css">
<link rel="stylesheet" href="css/highlight.css">
<link rel="stylesheet" href="css/style.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div id="contribution">
Built with
<a href="http://facebook.github.io/react/">React</a>,
<a href="http://esprima.org/">esprima</a> (<a href="https://github.com/facebook/esprima">FB version</a>),
<a href="https://parse.com">Parse.com</a>,
<a href="http://codemirror.net/">CodeMirror</a>
and
<a href="http://browserify.org/">browserify</a>
|
<a href="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey/Parser_API">MDN - Parser API</a>
|
<a href="https://github.com/fkling/esprima_ast_explorer">GitHub</a>
</div>
<div id="container"></div>
<script src="//www.parsecdn.com/js/parse-1.3.0.min.js"></script>
<script src="app.js"></script>
</body>
</html>