UNPKG

ace-mode-move

Version:

Syntax highlighting for Libra's Move language (https://developers.libra.org/docs/move-paper), for Ace ( https://ace.c9.io/ )

11 lines (8 loc) 267 B
const express = require('express'); const opn = require('opn'); const server = express() .use(express.static(__dirname + '/public/')) .listen(3000, async () => { opn('http://localhost:3000/index.html?do_not_run_tokenization=true'); }); // server.close();