I try to make the move from Dreamweaver to Visual Studio Code. We're developing an web application in Azure. So in Dreamweaver I add the site in dreamweaver settings and we can start coding. Now I want to do the same in VSC but I cannot find it in the menu and also could not find an answer to this (obvious) question on the internet (so far).
So, where do I define user settings, a link to my azure development site, etc?
Or is there another best practice to code Azure web applications with VSC. We work in an team of developers.
Thanks a lot
Vscode has multiple extensions that can help you develop in a good env despite your programming language or platform. Just install extensions by clicking ctrl+shift+x and search your own, to open user settings and tweak them click ctrl+shift+p and type settings, this will show you a list with all settings that your editor or extensions have.
Related
I wrote a program that plays a song using sonic pi. I have to transcribe the code to a web language (javascript). Since I'm new at javascript I thought it would be ideal to use QUORUM (http://quorumlanguage.com/) to transcribe it since there is easy access to MIDI libraries, etc. (that I absolutely need). I have a mac and tried to use netbeans, etc (all processes suggested on the quorum site) but they are not working. So, I figured I should be able to use the Quorum plugin that I downloaded on another IDE (a cloud IDE would probably be better). I keep failing and I honestly don't know really know what I'm doing. I'd prefer not to pay for an IDE. I tried orion's cloud ide "che" but it won't let me download the plugin via the internet or give me an option for uploading or running a native file.
Basically, I would like to find someway I can use quorum on my Mac.
Please help.
Doing all this for my graduate degree.
Thanks.
Em.
In order to use The Quorum Programming language, it MUST be in the Netbeans IDE. No exceptions.
The process of installing the plugin for Quorum Language Support is as follows:
MAKE SURE YOU HAVE THE LATEST VERSION OF THE JAVA DEVELOPMENT KIT!!! - This is VERY important as Quorum 3.0 uses the Latest Version of Java and Quorum compiles to Java Byte Code.
You MUST Have Netbeans 8.0 or greater (at most Netbeans 8.0.2). - This is also very important as Quorum 3.0 takes advantage of features in Netbeans 8.
Go to the plugins page. This can be done by clicking on "Tools" in the Menu Bar and then going to "Plugins"
Go to the Settings Tab and hit the button that says "Add"
In the Name Field, Type "Quorum"
In the URL Field, Type the following: http://quorumlanguage.com/updates/quorum/updates.xml
Now under "Available Plugins", Check the Box for Quorum
Click the Install Button
Restart Netbeans.
Now, upon completed load of the Netbeans IDE, The Quorum Module should ask you if you would like dictation of everything you do. If you do not want this, tell it that you do not. If you do, then go for it.
When you go to Create a new Project in Netbeans, you should see an option for Quorum. If you do see this,then you have successfully installed the Quorum Plugin to Netbeans.
I am trying to get an Aurelia project working in Visual Studio. I followed the steps outlined here and it builds and runs correctly.
This process has me using a "Web Site Project" (Not a Web Application Project). This is so that the tsconfig.json file can be used.
While it runs just fine, I cannot find a way to debug. (Meaning set a breakpoint and have the the app break and let me step through the code.)
Is Typescript/JavaScript debugging not supported with Web Site Projects? (I am using VS 2015).
If is supported for Web Site Projects, then I would love a suggestion on how to enable it or troubleshoot it.
Debugging in VS in general is only supported with Internet Explorer. If you tried an other browser (edge?), that may be your problem.
My main experience with developing in Visual Studio is as c#/c++ developer. But now I need to create html+css+javascript front end for [probably] PHP code, and I've heard that Visual Studio has pretty nice capabilities in that range, including debugging javascript.
However, I can't find anywhere a "web" project (except for the ASP.Net stuff, which I'm not sure that it is the right thing).
Here's what I think I need to do:
Create html file
Create css file
Include a bunch of javascript libraries
Write my own javascript code
Press F5 and debug the code in different browsers.
I'm mainly interested in intellisense, not a visual editor.
Is Visual Studio the right IDE for this kind of web development? And if it is, how do I set up the kind of project I described above?
I think the instructions at How do you add a folder to a project in Microsoft Visual Studio Express 2012 for Web? might work for setting up a Visual Studio project:
1) New blank solution
2) Right click on the solution and select Add existing website
3) Browse and select the folder with your html, css, javascript, etc. files
4) Right click on the page you want it to start on and select set as start page
As for running against different websites, you might try a Visual Studio extension. A decent starting list is here: http://www.asp.net/mobile/device-simulators
As the title mentions I would like to develop a html/css/js app for Windows8 but I'm not a fan of Visual Studio either the express or standard version when it comes to developing html.
Thus my question is with all the languages being open source is there a bundle or tutorial out there for other IDE's for example Aptana Studio so that you don't need to develop in VS?
Or if there isn't are there any hints from Microsoft of such a thing being released in the future?
You can use any editor you like to write apps. I personally use VIM for most of the code I write.
However in order to build the apps for Win8 you will have to use the compiler etc. tools that comes with .Net platform. You can use that tools from the console and thus you will avoid interaction with Visual Studio
I thought PDT would do code assisting on JS files. Was I wrong, or is there a bug or something I am missing?
Is the Javascript development tools installed? I'm not sure, whether its installed together with the PHP Development Tools.
Select Help/Install new software, then select the Helios update site (http://download.eclipse.org/releases/helios), then install the Javascript Development Tools from the Web, XML and Java EE category.
Update: See the answer at your other question.
Got here because I had the same problem, first install "Eclipse web developer tools => javascript development tools"
Then instead of creating a javascript project create a "static web project". Right click the project in project explorer choose configure (in the bottom) make sure you add javascript support (if it's not there than it's probably already supported).
Under your project in project explorer there should be an item called javascript resources right click that and choose properties. If the browser libraries or ecma3 libraries are not there you can add them.