Crandore Hub

jsTree

Create Interactive Trees with the 'jQuery' 'jsTree' Plugin

Create and customize interactive trees using the 'jQuery' 'jsTree' <https://www.jstree.com/> plugin library and the 'htmlwidgets' package. These trees can be used directly from the R console, from 'RStudio', in Shiny apps and R Markdown documents.

README

js-mobile-console
=====

![js-mobile-console](mobile_screen.png)

## Install
**Zip archive**:
[Download](https://github.com/msemenistyi/js-mobile-console/archive/master.zip)

**Browserify**:
> npm install js-mobile-console

[![NPM](https://nodei.co/npm/js-mobile-console.png)](https://nodei.co/npm/js-mobile-console/)

**Bower**:
> bower install js-mobile-console

##Overview

[Live demo](http://b1narystudio.github.io/js-mobile-console/).

It is extremely nice, that we are on the road of specifying and unifying remote
debugging protocol and we can already remotely debug web applications on desktop 
chrome, but what if we want to get it working also on Android browser or 
Safari for iOs?

MobileConsole can be embedded within any page for debugging, it will catch errors
and behave exactly as native js console in browser. It also outputs all the logs
you've written via an API of window.console. 

###Loading
Css file should be included within html:
```html
<link rel="stylesheet" href="./style/mobile-console.min.css">
```
Console may be used without any modular system:
```html
<script src="./mobile-console.min.js"></script>
```

With help of browserify:
```js
var mobileConsole = require('js-mobile-console');
```

Or AMD style (RequireJS): 
```js
define(['js-mobile-console'], function(mobileConsole))
```

###Usage

Simple usage:
```js
mobileConsole.show();
```

Advanced usage: 
```js
mobileConsole.options({
	showOnError: true,
	proxyConsole: false,
	isCollapsed: true,
	catchErrors: true
});
```

Conditional toggling:
```js
if (condition) {
	mobileConsole.show();
} else {
	mobileConsole.hide();
}
```

###API

- **show** - show console with default options.
- **hide** - hide console.
- **options** - method to initialize console, by default will show console, 
accepts hash of options.

###Options

- **showOnError** - *Default* false. Console will be hidden if no show method 
was called, but it will appear if any error occurs.
- **proxyConsole** - *Default* true. Determines if window.console methods are 
proxied to mobile console.
- **isCollapsed** - *Default* false. Determines if Console is collpased on startup.
- **catchErrors** - *Default* false. Determines if Console is registring 
window.onerror method in order to catch errors.

##Created by [msemenistyi](https://github.com/msemenistyi)  

##Changelog

### 0.3.0 (2014-11-11)
- add possibility to specify commands;
- add JSON.stringifying for logging;
- set z-index to console
- fix startup error on logValue

##Contributing
Feel free to open issues and send PRs. 


## License

The MIT License (MIT)

[![Binary Studio](http://www.binary-studio.com/images/logo.gif)](http://binary-studio.com)  
Copyright (c) 2014 Semenistyi Mykyta nikeiwe@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Versions across snapshots

VersionRepositoryFileSize
1.2 rolling linux/jammy R-4.5 jsTree_1.2.tar.gz 1.3 MiB
1.2 rolling linux/noble R-4.5 jsTree_1.2.tar.gz 1.3 MiB
1.2 rolling source/ R- jsTree_1.2.tar.gz 1.4 MiB
1.2 latest linux/jammy R-4.5 jsTree_1.2.tar.gz 1.3 MiB
1.2 latest linux/noble R-4.5 jsTree_1.2.tar.gz 1.3 MiB
1.2 latest source/ R- jsTree_1.2.tar.gz 1.4 MiB
1.2 2026-04-26 source/ R- jsTree_1.2.tar.gz 1.4 MiB
1.2 2026-04-23 source/ R- jsTree_1.2.tar.gz 1.4 MiB
1.2 2026-04-09 windows/windows R-4.5 jsTree_1.2.zip 1.3 MiB
1.2 2025-04-20 source/ R- jsTree_1.2.tar.gz 1.4 MiB

Dependencies (latest)

Imports

Suggests