码迷,mamicode.com
首页 > 编程语言 > 详细

[NodeJS]基于WebSocket的NodeJS在线C/C++ WebIDE和在线编译

时间:2018-03-27 01:56:37      阅读:688      评论:0      收藏:0      [点我收藏+]

标签:就是   tostring   ++   tst   run   div   ejs   json   response   

很早以前,就想自己做一个在线的IDE,前段时间,做了一个NodeJS的简易版

目前已经完成了登录、注册、代码编辑器(高亮、自动联想)、云端编译等功能

前端我主要是使用Bootstrap、codemirror

后端主要是NodeJS

编译器是g++

全站采用全静态,所以请求都是AJAX进行模拟

下面是server.js的源码

其他的可以移步coding查看项目

https://git.coding.net/leeli73/CorCPP_Online_IDE.git

因为很多文件的命名中,我使用了-,而coding中特殊字符不能作为文件名,所以项目中的www.zip 就是网站的前端代码

server.js是服务器脚本

还有很多问题,希望大奖能帮我一起找bug和完善功能

var WebSocketServer = require(‘ws‘).Server,
    wss = new WebSocketServer({ port: 88 });

wss.on(‘connection‘, function (ws) {
    console.log(‘client connected‘);
    ws.on(‘message‘, function (message) {
        console.log(message);
        ResponseJSON(message);
    });
});

function ResponseJSON(str)
{
    var Data = JSON.parse(str);
    if (Data.Type == "Code") {
        Response_Code(Data.Data);
    }
    else if (Data, Type == "Get")
    {

    }
}

function Response_Code(code)
{
    var fs = require("fs");
    fs.writeFile(‘gcc\code\code.txt‘, code, function (err)
    {
        if (err)
        {
            return console.error(err);
        }
    })
    fs.readFile(‘gcc\code\code.txt‘, function (err, data)
    {
        if (err)
        {
            return console.error(err);
        }
        console.log("DATA IS:" + data.toString());
    })
    var cmd = require("node-cmd");
    /*cmd.get(‘C:\\Users\\leeli\\Documents\\Visual Studio 2017\\Projects\\server\\server\\gcc\\check.exe C:\\Users\\leeli\\Documents\\Visual Studio 2017\\Projects\\server\\server\\gcc\\code\\code.txt‘, function (data)
    {
        console.log(data);
    });*/
    cmd.run(‘E:\server\server\gcc\check.exe E:\server\server\gcc\code\code.txt‘);

}

 

[NodeJS]基于WebSocket的NodeJS在线C/C++ WebIDE和在线编译

标签:就是   tostring   ++   tst   run   div   ejs   json   response   

原文地址:https://www.cnblogs.com/lee-li/p/8654658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!