[00:01] dynacker: mongodb doesnt play nice on openvz :( [00:03] sonnym has joined the channel [00:04] Hhaack has joined the channel [00:05] jmoyers has joined the channel [00:05] dseif has joined the channel [00:06] shipit has joined the channel [00:07] joshkehn has joined the channel [00:10] _main_ has joined the channel [00:11] joshkehn: Anyone have some quick bits on using browserify without connect? [00:15] jesusabdullah: joshkehn: did you see .bundle() ? [00:15] joshkehn: No? [00:15] jesusabdullah: That returns the bundled sauce, which you can use however you want without the middlewares [00:15] jesusabdullah: It's in the readme [00:15] joshkehn: Right. [00:15] AvianFlu: also, isn't there a cli for it now? [00:15] joshkehn: I want to develop but without using Connect [00:15] joshkehn: Would I have to re-bundle it everytime? [00:15] perezd has joined the channel [00:16] jesusabdullah: It's just a string [00:16] jesusabdullah: also, yes, there is a cli [00:16] joshkehn: Sure, fine, just a string, great! ;) [00:16] jesusabdullah: well, you can statically serve a string right? [00:16] joshkehn: I'm using a node server, so I don't mind putting more in there. [00:16] joshkehn: But I do mind installing connect just to use browserify. [00:16] Hhaack: I'm getting error: "task failed (err #-1): {task: libv8.a SConstruct -> libv8.a}" and can't find anything on google, just error #2, thoughts? [00:17] aaronblohowiak_: Hhaack: when do you get that error? [00:17] Hhaack: I'm doing the whole setup process [00:17] jesusabdullah: joshkehn: Well, you don't need to install connect then. Either find a way to wrap the middleware, or use something like .bundle to get at the string that the middleware would likely respond with in the middleware anyway [00:17] stagas has joined the channel [00:17] Hhaack: When I try to "make", that is [00:17] jesusabdullah: It's easiest with connect, obvs, but you really shouldn't *need* it [00:18] joshkehn: Sounds like more hacking them I'm up for tonight. [00:20] jesusabdullah: I still don't understand why you can't just serve up the .bundle with the standard http module :( [00:20] AvianFlu: put it in a file and static-serve it [00:20] AvianFlu: that's how you would [00:20] jesusabdullah: or that! [00:20] joshkehn: ... [00:20] joshkehn: I'm not going to re-bundle and save the code everytime I make a change. [00:21] AvianFlu: that was more for jesusabdullah's question [00:21] joshkehn: I'm wondering now if Browserify caches it and I would have to rekick the entire server every time. [00:21] joshkehn: Fuck it. [00:21] joshkehn: I'm going with straight