How to install Deno On Ubuntu & Fedora – Javascript and Typescript Runtime

  • Post last modified:August 4, 2020
  • Post category:Linux
  • Post author:

Deno is a free and open source Javascript and Typescript runtime environment just like Node.js and from the same Node creator Ryan Dahl for Linux, macOS and Windows. It is released under MIT license and based on Rust, Tokio and V8 JavaScript engine. Some of the important features are remote script execution, No file, network, or environment access by default, standard module, browser support, WebAssembly support and built-in tooling support. The best thing is you don’t need any dependency on package managers or package registries.

(more…)

Continue ReadingHow to install Deno On Ubuntu & Fedora – Javascript and Typescript Runtime

JS Studio – JavaScript IDE

  • Post last modified:January 20, 2012
  • Post category:Linux
  • Post author:

JS Studio is a Qt-based cross-platform IDE for developing JavaScript-based web applications.

Syntax highlighting
Code completion
Project management
Build system
Integration with common VCSs
Interface can be fully extended / modified by JavaScript addons

To install JS Studio on ubuntu 11.10

1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal in the search field. And click Terminal.

2.Type the below code in terminal and hit enter.

(more…)

Continue ReadingJS Studio – JavaScript IDE

Using Google hosted javascript libraries

To use Google-hosted JavaScript libraries Just add this code to your functions.php file if( !is_admin()){ wp_deregister_script(’jquery’); wp_register_script(’jquery’, (”http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js”), false, ‘1.3.2?); wp_enqueue_script(’jquery’); } Now call your JavaScript file, after the wp_head function in header.php file. Here yourscrip=name of your javascript file.

Continue ReadingUsing Google hosted javascript libraries