Netbeans Javascript?
Solution 1:
Update:
NetBeans 7.4 Released in October 2013, builds on the functionality listed below. As well as direct download of most major JS source files from CDNJS. Version 7.4 includes "Editing support for AngularJS, Knockout and ExtJS frameworks, Navigator and code folding in JSON files, Enhanced code completion with improved accuracy" see more here: https://netbeans.org/community/releases/74/
To set up a new JS project: under the File Menu choose -> New Project.
Step 1: Select HTML5 in categories and HTML5 Application in Projects
Step 2: Name your application.
Step 3: Choose a site template.
Step 4: Search for available libraries, click on the Version number to download previous versions.
Finish and you are done.
NetBeans 7.3 (scheduled for release in February 2013) introduces a new project type optimized for developing client web applications. This new project type can be found in New Project wizard in "HTML/JavaScript" category. HTML project supports is enabled by default for PHP and Java bundles of NetBeans, for other ones it need to be downloaded as a plugin.
see: http://wiki.netbeans.org/NetBeans_73_NewAndNoteworthy#Project_Creation
Original answer:
File> New Project> PHP > PHP Web Application
.. Sounds like crap, but works fine.
Because NetBeans doesn't have Javascript or HTML projects yet (in 7.0.1).
Solution 2:
NetBeans do support development of JavaScript. But, the Javascript files should have a web project container. Hence, first create a Web Application project by going to File> New Project> Java Web> Web Application
. Continue and create a project. Once the project is created, expand the project to view Web Pages
folder. Right click on the folder and select New > Other
. Choose Other
in Categories
and then select JavaScript File
. Start developing.
Solution 3:
[Note: this is for Netbeans 7.3+]
In NetBeans, a PHP project is a pretty general web application that can contain JavaScript, HTML, PHP, CSS, XML, and all the different web & server technologies (except Java) the Netbeans supports. So you can use a PHP aapplication as a general web project. This option is better than an HTML5 project because it includes server-side processing in the form of PHP files. Also, if you are developing in JavaScript, you will probably be using Ajax at some point, and PHP is a good language for the server side of Ajax, as well as server-side processing in general.
Instructions
Create a PHP Project.
- Go to the
File
menu. - Click
New Project
. - Select
PHP
in Categories. - Select
PHP Application
. - Click
Next
- Fill out the details.(Name, location, server, etc. This part is pretty self explanatory.) (Note: if you need help, click the Help button in the lower right corner)
If you do not have the PHP
Option in the New Project Dialog, then you did not install the PHP NetBeans plugin.
Installing the PHP Plugin:
- Go to the
Tools
menu. - Click on the
Plugins
option. (It is second from the bottom) - Click on the
Available Plugins
Tab. - Search
PHP
. - Check the checkbox next to the
PHP
Plugin.. - Click
Install
. (Lower-left corner) - Click
Next
on the dialog that comes up. - Click the
I accept
checkbox. - Click the
Install
button. - If a little window pops up in the lower right corner that says
restart IDE
, Exit Netbeans, and then Open it again. It may take longer than usual because it is installing the new Features.
To make JavaScript Files:
- Go to the
File
menu. - Click
New File
. [Select the relevant category]
A. (Netbeans 8.x) click
HTML5
inCategory
. B. (Netbeans 7.x) clickOther
inCategory
.- Select
JavaScript File
. - Fill out the details. (Name, location,etc.)
Solution 4:
To force NetBeans to check JavaScript within PHP files, follow these instructions.
Go to Tools > Options > Miscellaneous > Files. From drop down menu File Extension select php5. From drop down menu Associated File Type (MIME) select text/javascript
Solution 5:
click new file > [Categories] others > Javascript file
Post a Comment for "Netbeans Javascript?"