Live data from Hacker News

Node.js Tools for Visual Studio

hanselman.com

41–50 of 90 posts

Re: Node.js Tools for Visual Studio

#41

Seeing things like this gives me hope that one day Windows will be a first class os for web development. Now if I could just maximize the command prompt window....

I just fire up the powershell ISE. I'd love a quake style terminal that's just this things console in borderless mode.

Re: Node.js Tools for Visual Studio

#42

Earlier quoted context omitted.

I like Web API a lot and would have no problems using it more. I've never messed around with SignalR, I had already started playing with Node at that point. As I mentioned, but didn't elaborate on, in my first post I had an urgent need to fix a production problem as quickly as possible. But the service giving us the problems was opaque, and encumbered by these massive 100+ project .NET solutions that had grown unwiel…

Sounds reasonable :). Although I dread imagining a JavaScript equivalent of a "100+ project .NET solutions" built in spirit of "rapid development".

I do like dynamic languages for quick prototypes, but my experience on the scale of enterprise projects and their code quality, just increased my preference for static typing for production code.

Re: Node.js Tools for Visual Studio

#43
post #18

Earlier quoted context omitted.

Do you have a reference for Azure internals being written in node.js? I'd love to read about it.

i'll try to find out. top my head i know the azure node sdk is all node (obviously...), all the cross-plat commands/utils are node, skype, yammer, bing (?), ... all use node to various extents. some info: http://www.windowsazure.com/en-us/develop/nodejs/ https://github.com/WindowsAzure/azure-sdk-for-node https://github.com/WindowsAzure/azure-sdk-tools-xplat

TypeScript also uses node.

Re: Node.js Tools for Visual Studio

#44
post #19

Seems like overkill. Part of why Node is great and so easy to get started with is that all you need is a browser, a text editor, and the terminal. I suppose for people that already use VS this is good, but maybe we should encourage them to write Node apps outside of that environment instead of shoving Node into a giant IDE.

You are free to keep on doing UNIX System V style of work.

Re: Node.js Tools for Visual Studio

#45

Seeing things like this gives me hope that one day Windows will be a first class os for web development. Now if I could just maximize the command prompt window....

I just fire up the powershell ISE. I'd love a quake style terminal that's just this things console in borderless mode.

ConEmu (https://code.google.com/p/conemu-maximus5/) + Quake Mode = Awesome :)

Re: Node.js Tools for Visual Studio

#46
post #45

Earlier quoted context omitted.

I just fire up the powershell ISE. I'd love a quake style terminal that's just this things console in borderless mode.

ConEmu ( https://code.google.com/p/conemu-maximus5/ ) + Quake Mode = Awesome :)

THIS. ConEmu + Scoop (http://scoop.sh) has made using Windows much much much more productive for me.

Re: Node.js Tools for Visual Studio

#47
post #35
post #19

Seems like overkill. Part of why Node is great and so easy to get started with is that all you need is a browser, a text editor, and the terminal. I suppose for people that already use VS this is good, but maybe we should encourage them to write Node apps outside of that environment instead of shoving Node into a giant IDE.

Well, they're not taking that away from you. You can still get started with the basics. But even node apps can get big. It's the debugging story I'm really digging here. Being able to just set a breakpoint and hit f5 is real exciting as opposed to having to type "debugger" in your code and then sit around for ages. It's a shame I do all my node work on a Mac. I'm guessing this won't be available for VS express?

Just like Python tools for VS it probably won't work with VS express, but it probably will work with the freely available VS shell (that is just the bare Visual Studio IDE without any existing language support in it). So you can get the whole package for free, but obviously only this node.js plugin will be open source.

Re: Node.js Tools for Visual Studio

#48

This seems useful for the profiling alone.

The profiling will only get better. Right now it profiles everything, but it could potentially be scoped down to "just my code." Plus, it's a sampling profiler as it is so you will need to push some real traffic to work hot spots (as opposed to just browse and click around) in order to get results.

What's cool about it, IMHO (I wrote the post above) is that it takes the V8 profiling stuff and feeds it into the VS visualizer...as it should.

Re: Node.js Tools for Visual Studio

#50

Seeing things like this gives me hope that one day Windows will be a first class os for web development. Now if I could just maximize the command prompt window....

windows is a first class os for web development. what is it lacking? i have coded in ruby, python, java and go for the web.

also used different web servers including apache and tomcat.

Post reply on HN