JavaScript library to implement command line in browser [closed] - javascript

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I would like to allow powerusers to perform certain actions on the site in a command-line like interface (think Quake console that slides in from above ;-). Is there a library that already implements the basics of what I need in the browser? Tasks like getting the input from the user, command history etc. Me and my colleagues will have limited time to implement this during a hackathon, so we want to have as much time as possible to implement the actual commands interfacing with our app.

Have a look at Josh.js for a bash-like environment in the browser:
http://sdether.github.com/josh.js/

Of course there is also the excellent termlib found here.

You may find this project helpful:
https://github.com/chjj/tty.js

Have a look at JavaScript shells from mozilla.org
See also Jash: JavaScript Shell

Related

Configuration - Is there a web based github concatenation tool? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I was told github has concatenation tool, rather I heard this at a tech event.
So if I have
file1.js
file2.js
...
It will concatenate them into
file_all.js
Is there a web interface for this? ( at www.github.com )
I want to be efficient and not copy paste this by hand.
I don't need anything complicated, just something that will do this automatically.
Use grunt. It has become an extremely popular tool. It may take a little while for you to set it up but it was designed to automate tasks such as uglifying (concatenating and minifying JS files).
You want to automate your workflow? Go with maven and this package of tools for JS developers http://mojo.codehaus.org/javascript-maven-tools/

What is the best way to minify CSS and JavaScript on an ASP.NET server? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I've got CSS and JavaScript on an ASP.NET server running .NET 4 with C#. How can I send minified CSS and JavaScript response to client?
you can use Microsoft Ajax Minifier
http://www.asp.net/ajaxlibrary/Download.ashx
I think you need a minifier, there are many online minify sites available you can use like JSCompress
You can use the Closure-tool. It also has a RESTful api which can be used easily.
We use http://www.codethinked.com/squishit-the-friendly-aspnet-javascript-and-css-squisher it's really easy and good to use. You can simply choose debug or production mode in your configuration file.

What is the best IDE when using knockout.js? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I'm looking to start using knockout. What is the best IDE when using knockout.js? Most of the literature mentions VS2010, is there a good free alternative?
I love Sublime Text 2 , it's multi-platform, super-easy and very configurable.
It's not free per se, but they let you try it out with no limitation for whatever time you want. The licenses are very cheap and you don't have to buy one for each O.S.
I prefer to use something simple like notepad++ for javascript. If you want something more then Eclipse offers a javascript version.
Cloud 9 IDE. I won't say it's the best, but it's a good option.
Cloud9 is a state-of-the-art IDE that runs in your browser and lives
in the cloud, allowing you to run, debug and deploy applications from
anywhere, anytime. A complete game-changer that will change the way we
develop applications forever.

How to create a web crawler with Node.js? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I just recently got interested in how search engines work, and I found out that they use "bots" or "webcrawlers". I immediately started wondering about how do these things work and I wanted to create one! So, first of: how do you make a program that requests a page from a server? It would be awesome if you gave me a simple example in JavaScript (I'm running it as a normal scripting language using Node). Next, is there a Node module that let's me interpret HTML? Create a DOM for me so I can cycle trough all the links and so on? Correct me if I'm wrong but I guess it's done like that... Any examples in C++, C or Python are warmly welcomed as well, although I'd prefer JS or Python because I'm more familiar with high-level scripting languages.
Getting HTTP pages: node http.get (example is there)
DOM documents: jsdom (also includes examples)

Anyone use Pyjamas (pyjs) python to javascript compiler (like GWT..) [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Has any one used this? I don't have a large background in Javascript and this lib looks like it may speed things along.
www.pyjs.org
yep. me. i'm the lead developer. drop by on groups.google.com "pyjamas-dev" and say hello.
Yes, I've used. It's amazing! I think it's much easier to use than the Java-based GWT. I found the Google Code wiki on it very practical: http://code.google.com/p/pyjamas/w/list
If you're just starting out with it, then definitely check out the showcase: http://pyjs.org/showcase/Showcase.html for usable snippets/widgets
As of now, it is not supported on M$ Windows, but runs beautifully on Linux.
yes it works fine on windows (it's a compiler: you just need python, to run the conversion to javascript). but if you're thinking of pyjamas-desktop, 0.6 added support for MSHTML as one of the engines, so that works too.
Yes. I've used pyjs to build minesweeper game: http://pymines.appspot.com/

Categories