Is it possible to make GUI applications using JavaScript? [closed] - javascript

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm trying to understand this concept: is that possible to make an application, with a graphical user interface, using JavaScript. I found that adobe bracket is also made using JavaScript, but how is its GUI designed?
Please tell me; I'm trying to make my new IDE using JavaScript. So is that possible to design GUI user interfaces using JavaScript?

Try out node-webkit. Its for building GUI applications using javascript.

Related

A dynamic site that does not use JavaScript [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I started using the python django framework. Can I open a dynamic site without using JavaScript? I find python easy to use and for some reason I don't like JavaScript.
In order to implement dynamic elements (such as displaying messages at button click without updating the site) you need to instruct the browser to change the respective DOM elements.
Currently the only fully supported language that browsers understand for that purpose is Javascript.
There are Javascript alternatives such as Dart or Typescript, but they need to be transpiled to Javascript to work with browsers.
So, practically you cannot build a dynamic website without Javascript at the moment.

Create A Windows 10 App Using HTML, CSS JavaScript [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I'm trying to create a Windows 10 application using HTML CSS and JavaScript... I already have the code saved but I need a way to open it as a .exe file or something... It needs to be a separate file that I can open in a new window.
Thanks in advance!
To create an application using web technologies, such as HTML, CSS, and JavaScript, I will recommend you start looking into the Electron Framework which allows you to use web technologies resources for app development.

Html to content management system [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Hi I started learning web design couple of months ago and I just made my first functional site using HTML, CSS and JavaScript and PHP for my form. I wanted to find out if there is anyway I can transfer my whole site to a CMS without redesigning it. Thanks
You use some frameworks like CodeIgniter or WordPress. These are the most loved and widely used frameworks in PHP.

How to use angularJs in GWT? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to integrate angularJs in my existing GWT application. I am new to angularJs. How to start with it?
Thanks
Take a look at
AngularGWT - This is a library that enables Authors to write components or complete apps for AngularJS in Java. This is mostly done using compiler castings for Google Web Toolkit to "compile" Java Code into Javascript.
AngularGWT is the way to go. But if you want an simple way off, include the angular.js in your *.html file and use JSNI to access Angular JS from your code.

How should I go about writing a JavaScript plugin API in Ruby? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm doing a project in Ruby, and I want to be able to write plugins for it in JavaScript, so I'm working on a JavaScript API for it. How should I go about doing this?
I would recommend using an existing javascript interpreter, like therubyracer. You can eval the plugin code and interact with it through that.

Categories

Resources