Meteor and brackts server

Hello
I am new and trying to make bracket server using meteor.js.
I found a simple exmple for bracket server like below. As you know meteor supports HTTP and flowroute.
but does not have “http.createServer” api like node which brackets needs as its argument.
I think meteor handles it inside.
Is there any way to solve this issue? I dont want to create another server, wnat to use one server ccreated by meteor.

(https://github.com/rabchev/brackets-server)

var path        = require("path"),
    http        = require("http"),
    express     = require("express"),
    brackets    = require("brackets"),
    app         = express(),
    server      = http.createServer(app);

app.get("/", function (req, res) {
    res.send("Hello World");
});

var bracketsOpts = {
    projectsDir: path.join(__dirname, ".."),
    supportDir: path.join(__dirname, "..", "/support")
};
brackets(server, bracketsOpts);

server.listen(3000);

console.log("Your application is availble at http://localhost:3000");
console.log("You can access Brackets on http://localhost:3000/brackets/");

As you are new: Have you tried the meteor tutorial?

Edit: Did you understand what meteor is and does? And what Brackets Server does?

Yes I am trying to investigat the below codes.
but it is not easy as I expected.

What are you trying to achieve? Meteor and Brackets Server are two different things.

I tried to implment meteor server for bracket IDE like above node bracket server.