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

Posted leeli73

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[NodeJS]基于WebSocket的NodeJS在线C/C++ WebIDE和在线编译相关的知识,希望对你有一定的参考价值。

很早以前,就想自己做一个在线的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和在线编译的主要内容,如果未能解决你的问题,请参考以下文章

基于 WebSocket 服务器的 NodeJS XMPP

[NodeJS]NodeJS基于WebSocket的多用户点对点即时通讯聊天

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

nodejs-websocket+ssl证书

WebSocket 学习--用nodejs搭建服务器

不要混淆nodejs和浏览器中的event loop