Thread: Editor for web based languages

  1. #1
    SAMARAS std10093's Avatar
    Join Date
    Jan 2011
    Location
    Nice, France
    Posts
    2,694

    Editor for web based languages

    So, I have heard really good comments for notepad++ by a guy that is really good.

    Also, some others suggested sublime or netbeans (which I already use for C/C++/Java.

    What would you suggest?

    In other words, I am looking for an editor to write HTML, CSS, javaScript and these kind of languages!!
    Code - functions and small libraries I use


    It’s 2014 and I still use printf() for debugging.


    "Programs must be written for people to read, and only incidentally for machines to execute. " —Harold Abelson

  2. #2
    Registered User hex_dump's Avatar
    Join Date
    Dec 2012
    Posts
    88
    I personally like netbeans. Once I got over the whole JAVA issue, it works pretty nice for me.

  3. #3
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Generally, learning a new tool takes time away from your development effort, so if I were you, I would try to see if whatever relevant plugin(s) for Netbeans works the way I like. If it does, well and good: you're already used to the Netbeans interface.

    That said, if you're looking for a general purpose editor like Notepad++, then I recommend Geany.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  4. #4
    SAMARAS std10093's Avatar
    Join Date
    Jan 2011
    Location
    Nice, France
    Posts
    2,694
    Today I have to fly away, so I will look at it after two-three days, that I will find my self in a stable location ;p
    Code - functions and small libraries I use


    It’s 2014 and I still use printf() for debugging.


    "Programs must be written for people to read, and only incidentally for machines to execute. " —Harold Abelson

  5. #5
    SAMARAS std10093's Avatar
    Join Date
    Jan 2011
    Location
    Nice, France
    Posts
    2,694
    I installed notepad++, but the creation and management of a project does not seem to be convenient. Probably I do something wrong. Can someone explain how to create a project in notepad?
    Code - functions and small libraries I use


    It’s 2014 and I still use printf() for debugging.


    "Programs must be written for people to read, and only incidentally for machines to execute. " —Harold Abelson

  6. #6
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    A quick search of the Web brings up... How to manage a development project using Notepad++.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  7. #7
    SAMARAS std10093's Avatar
    Join Date
    Jan 2011
    Location
    Nice, France
    Posts
    2,694
    I have read this before asking.. It seems that first I have to create the file (as an irrelevant to the project file) and then from the project add the file to the project. Moreover, they don't seem to be saved on the same location by default.
    If that is the case, then I guess will have to say bb to notepad..
    Code - functions and small libraries I use


    It’s 2014 and I still use printf() for debugging.


    "Programs must be written for people to read, and only incidentally for machines to execute. " —Harold Abelson

  8. #8
    SAMARAS std10093's Avatar
    Join Date
    Jan 2011
    Location
    Nice, France
    Posts
    2,694
    To be more exact, what I want to have and does not have is the option to right click on the project and let me create a new file, which be automatically included in the project. Moreover, I would like the files of every project to be kept in the project's folder. If this can not be supported from notepad, then I should uninstall it.
    Code - functions and small libraries I use


    It’s 2014 and I still use printf() for debugging.


    "Programs must be written for people to read, and only incidentally for machines to execute. " —Harold Abelson

  9. #9
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Quote Originally Posted by std10093
    It seems that first I have to create the file (as an irrelevant to the project file) and then from the project add the file to the project. Moreover, they don't seem to be saved on the same location by default.
    (...)
    To be more exact, what I want to have and does not have is the option to right click on the project and let me create a new file, which be automatically included in the project. Moreover, I would like the files of every project to be kept in the project's folder.
    You could ask on the Notepad++ mailing list. I find it hard to imagine that this is not possible since it is like the bare bones of what the notion of a project is about. If having to add files to a project is too much to ask from you, then maybe an editor/lightweight IDE is just not for you.

    Quote Originally Posted by std10093
    If that is the case, then I guess will have to say bb to notepad..
    (...)
    If this can not be supported from notepad, then I should uninstall it.
    You say this as if someone here really has a vested interest in getting you to use Notepad++ (and yes, the name is Notepad++, not Notepad)
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  10. #10
    Registered User
    Join Date
    May 2012
    Posts
    1,066
    The one thing I don't really understand is: why do you want to use a new editor at all just for writing HTML, CSS and JavaScript? What's so special about them?

    NetBeans (your current IDE, isn't it?) seems to be ok:
    Quote Originally Posted by NetBeans Page
    The NetBeans IDE offers full editor support for HTML, JavaScript, and CSS.
    (NetBeans IDE - Dynamic Languages)

    Bye, Andreas

  11. #11
    SAMARAS std10093's Avatar
    Join Date
    Jan 2011
    Location
    Nice, France
    Posts
    2,694
    I guess I feel too insecure of not mixing things around and make nothing work. But I will have to take the risk !!!

    EDIT: I think I should do what you say. Do I need to uninstall netbeans and install it from scratch? Or there is something more elegant? Because in the link Andreas provided, I found download from scratch only..

    Thanks for your time.
    Last edited by std10093; 02-05-2013 at 03:08 PM.
    Code - functions and small libraries I use


    It’s 2014 and I still use printf() for debugging.


    "Programs must be written for people to read, and only incidentally for machines to execute. " —Harold Abelson

  12. #12
    Registered User
    Join Date
    May 2012
    Posts
    1,066
    Quote Originally Posted by std10093 View Post
    Do I need to uninstall netbeans and install it from scratch?
    What's wrong with your current setup?

    I somehow have the feeling that you make your life more complicated than it really is :-)

    Bye, Andreas

  13. #13
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    To be fair Notepad++ is just ridiculous when it comes to project management. I could never understand that window. It really doesn't seem to let you create and add a new file to your project on the fly. It's that stupid of a feature. Neither can you create folders in your filesystem or link project folders to folders in your filesystem. So no folder in the project manager actually exists, which makes project management at the filesystem level (an important feature for anyone dealing with source control) an absolute joke.

    There may be some obscure option that lets you do all (of course not!), but if that's the case that's really already breaking the mold on something that virtually any IDE on the market has and making extremely simple to use. It would be just better if this feature didn't exist. I see no point to it.

    Only once I used notepad for project management. It was before this retarded feature that should embarrass any developer (it's not even properly documented; the only word on the help for project management reads "blabla"). But its still excellent with the right plugins. Just ignore that window.
    Last edited by Mario F.; 02-05-2013 at 04:54 PM.
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  14. #14
    SAMARAS std10093's Avatar
    Join Date
    Jan 2011
    Location
    Nice, France
    Posts
    2,694
    Andreas that's true˛.
    I searched the net for solutions and finally were able to setup an HTML editor in netbeans and I wasn't ok with that. Moreover I had some problems with some license. Also, there was no obvious way to launch the project in a real web browser. It was viewed in an embedded web browser.

    Maria, I couldn't agree more! However, the link you provided, was already read by me and did not help much.

    As a result, I am now installing aptana studio (which I am familiar with).

    Thanks all for your responses.

    EDIT:
    Code:
    [16:05:51.599] hello web world
    Last edited by std10093; 02-06-2013 at 08:06 AM.
    Code - functions and small libraries I use


    It’s 2014 and I still use printf() for debugging.


    "Programs must be written for people to read, and only incidentally for machines to execute. " —Harold Abelson

  15. #15
    Registered User
    Join Date
    Dec 2007
    Posts
    2,675

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Presentation of WYSIWYG web-based-presentations editor
    By std10093 in forum General Discussions
    Replies: 5
    Last Post: 01-02-2013, 05:53 AM
  2. TurboC based, Graphics based program with weird error!
    By sidx64 in forum C++ Programming
    Replies: 4
    Last Post: 11-18-2012, 12:48 PM
  3. languages based off of C programming
    By scarr105 in forum C Programming
    Replies: 1
    Last Post: 03-09-2005, 01:53 PM
  4. what languages are fading ? what languages remain ?
    By dot_rain in forum Tech Board
    Replies: 32
    Last Post: 03-04-2004, 09:25 AM
  5. Other languages...
    By Fool in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 11-30-2001, 06:48 PM