All Projects → Tencent → Vconsole

Tencent / Vconsole

Licence: other
A lightweight, extendable front-end developer tool for mobile web page.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
Svelte
593 projects
HTML
75241 projects
Less
1899 projects
CSS
56736 projects

Projects that are alternatives of or similar to Vconsole

Eruda
Console for mobile browsers
Stars: ✭ 11,547 (-17.62%)
Mutual labels:  console, mobile
Wcdb
WCDB is a cross-platform database framework developed by WeChat.
Stars: ✭ 9,264 (-33.91%)
Mutual labels:  wechat, mobile
Flutter wechat assets picker
An assets picker in WeChat style, support multi assets picking.
Stars: ✭ 398 (-97.16%)
Mutual labels:  wechat, mobile
Hardcoder
Hardcoder is a solution which allows Android APP and Android System to communicate with each other directly, solving the problem that Android APP could only use system standard API rather than the hardware resource of system.
Stars: ✭ 1,930 (-86.23%)
Mutual labels:  wechat, mobile
Ci edit
A terminal text editor with mouse support and ctrl+Q to quit.
Stars: ✭ 183 (-98.69%)
Mutual labels:  console
Cointop
A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies 🚀
Stars: ✭ 2,912 (-79.23%)
Mutual labels:  console
Ionic2 Rating
⭐️ Angular star rating bar. Built for Ionic 2+.
Stars: ✭ 177 (-98.74%)
Mutual labels:  mobile
Android Advancedwebview
Enhanced WebView component for Android that works as intended out of the box
Stars: ✭ 2,186 (-84.4%)
Mutual labels:  mobile
Wechatminiprogram Shopping Mall
微信小程序的个体商店前端(以下面一个开源模板为基础)和Java后台(含mysql数据库文件)
Stars: ✭ 186 (-98.67%)
Mutual labels:  wechat
Wechatvideocourse
《微信公众号+小程序快速开发》视频教程课件及代码
Stars: ✭ 185 (-98.68%)
Mutual labels:  wechat
Glee
Keyboard glee for your web.
Stars: ✭ 182 (-98.7%)
Mutual labels:  console
We Validator
💯 简单灵活的表单验证插件,支持小程序、浏览器以及Nodejs端使用
Stars: ✭ 180 (-98.72%)
Mutual labels:  wechat
Esplay Retro Emulation
Retro Emulation Collection for ESPlay Hardware, an ESP32 based game console
Stars: ✭ 183 (-98.69%)
Mutual labels:  console
Weixinsdk
微信开发SDK。
Stars: ✭ 177 (-98.74%)
Mutual labels:  wechat
Wxapp Webpack Plugin
📦 微信小程序 webpack 插件
Stars: ✭ 185 (-98.68%)
Mutual labels:  wechat
Wei
微信服务号裂变引擎,提供一套简单明了的DSL,快速配置和接入服务号裂变。 wechat fission platform, for technological dimensionality reduction.
Stars: ✭ 177 (-98.74%)
Mutual labels:  wechat
Wechatredenvelop
iOS版微信抢红包Tweak
Stars: ✭ 2,167 (-84.54%)
Mutual labels:  wechat
Zepto.fullpage
专注于移动端的fullPage.js
Stars: ✭ 2,120 (-84.88%)
Mutual labels:  mobile
React Mobile Picker
An iOS like select box component for React
Stars: ✭ 180 (-98.72%)
Mutual labels:  mobile
Cordova Plugin Screen Orientation
Cordova Plugin Screen Orientation
Stars: ✭ 181 (-98.71%)
Mutual labels:  mobile

English | 简体中文

vConsole

A lightweight, extendable front-end developer tool for mobile web page.

vConsole is framework-free, you can use it in Vue or React or any other framework application.

Now vConsole is the official debugging tool for WeChat Miniprograms.

Features

  • Logs: console.log|info|error|...
  • Network: XMLHttpRequest, Fetch, sendBeacon
  • Element: HTML elements tree
  • Storage: Cookies, LocalStorage, SessionStorage
  • Execute JS command manually
  • Custom plugins

For details, please see the screenshots below.

Release Notes

Latest version: npm version

Detailed release notes for each version are available on Changelog.

Guide

See Tutorial for more usage details.

For installation, there are 2 primary ways of adding vConsole to a project:

Method 1: Using npm (Recommanded)

$ npm install vconsole
import { VConsole } from 'vconsole';

const vConsole = new VConsole();
// or init with options
const vConsole = new VConsole({ maxLogNumber: 1000 });

// call `console` methods as usual
console.log('Hello world');

// remove it when you finish debugging
vConsole.destroy();

Method 2: Using CDN in HTML:

<script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
<script>
  // VConsole will be exported to `window.VConsole` by default.
  var vConsole = new window.VConsole();
</script>

Available CDN:

Preview

http://wechatfe.github.io/vconsole/demo.html

Screenshots

Overview:
Light theme Dark theme
Log Panel:
Log styling Command line
System Panel:
Performance info Output logs to different panel
console.log('[system]', 'output to system panel.')
Network Panel:
Request details
Element Panel:
Realtime HTML elements structure
Storage Panel:
Add, edit, delete or copy Cookies / LocalStorage / SessionStorage

Documentation

vConsole:

Plugin:

Third-party Plugins

Feedback

QQ Group: 497430533

License

The MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].