All Projects → chemzqm → Stack Source Map

chemzqm / Stack Source Map

Add source map support for error stack (Chrome only)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Stack Source Map

React Article Bucket
总结,积累,分享,传播JavaScript各模块核心知识点文章全集,欢迎star,issue(勿fork,内容可能随时修改)。webpack核心内容部分请查看专栏: https://github.com/liangklfangl/webpack-core-usage
Stars: ✭ 750 (+665.31%)
Mutual labels:  webpack, chrome
Vertical Tabs Chrome Extension
A chrome extension that presents your tabs vertically. Problem solved.
Stars: ✭ 117 (+19.39%)
Mutual labels:  webpack, chrome
Web Extension Starter
Typescript, React, Redux, Styled-Component and Webpack based sample extension boilerplate. Runs on Chrome and Firefox. Sample chrome extension.
Stars: ✭ 115 (+17.35%)
Mutual labels:  webpack, chrome
Blog
浩麟的技术博客
Stars: ✭ 2,002 (+1942.86%)
Mutual labels:  webpack, chrome
Webextension Toolbox
Small CLI toolbox for cross-browser WebExtension development
Stars: ✭ 365 (+272.45%)
Mutual labels:  webpack, chrome
Vue Chrome Extension Boilerplate
Boilerplate for Chrome extension using Vue.js and Webpack with auto-reload enabled.
Stars: ✭ 171 (+74.49%)
Mutual labels:  webpack, chrome
Awesome Chrome Extension Boilerplate
Use react + typescript + webpack to enhance your chrome extension development experience
Stars: ✭ 146 (+48.98%)
Mutual labels:  webpack, chrome
Oscnews
Chrome 插件,查看开源中国软件更新资讯,文档导航,GitHub 趋势榜,linux命令索引,浏览历史记录和时钟页面。
Stars: ✭ 582 (+493.88%)
Mutual labels:  webpack, chrome
Pcaaron.github.io
Web全栈技术笔记:https://pcaaron.github.io/
Stars: ✭ 16 (-83.67%)
Mutual labels:  webpack, chrome
Katatema
A handy static site generator using React.js
Stars: ✭ 95 (-3.06%)
Mutual labels:  webpack
Vbot
JSON based visual regression testing library. Liberate creativity, minimize repeated works ✌️
Stars: ✭ 96 (-2.04%)
Mutual labels:  chrome
Jetpack
🚀 Jetpack – Webpack made more convenient.
Stars: ✭ 1,326 (+1253.06%)
Mutual labels:  webpack
Nodefony Starter
Nodefony Starter Node.js Framework
Stars: ✭ 95 (-3.06%)
Mutual labels:  webpack
Eleventy Starter
An 11ty starter project.
Stars: ✭ 97 (-1.02%)
Mutual labels:  webpack
Molecule
⚛️ – :atom: – ⚛️ Boilerplate for cross platform web/native react apps with electron.
Stars: ✭ 95 (-3.06%)
Mutual labels:  webpack
Gas Webpack Plugin
Webpack plugin for Google Apps Script
Stars: ✭ 97 (-1.02%)
Mutual labels:  webpack
Chrome Extension Webpack Boilerplate
A basic foundation boilerplate for rich Chrome Extensions using Webpack to help you write modular and modern Javascript code, load CSS easily and automatic reload the browser on code changes.
Stars: ✭ 1,320 (+1246.94%)
Mutual labels:  webpack
Fontmin Webpack
Minifies icon fonts to just the used glyphs.
Stars: ✭ 93 (-5.1%)
Mutual labels:  webpack
Vuedemo sell eleme
ele by vue2.x 🐧
Stars: ✭ 1,349 (+1276.53%)
Mutual labels:  webpack
Webpack
Serve webpack assets properly from golang frameworks
Stars: ✭ 97 (-1.02%)
Mutual labels:  webpack

Stack-source-map

Attamp to make error stack works with source-map in browser, only Chrome supportted yet. screen shot 2015-11-24 at 00 23 59

The code mostly from evanw/node-source-map-support, but simplified to works with browser only and fixed to support all source map mode of webpack

Basically, it's some kind hack of v8 message.js

Works with babel and webpack 😃

Install

npm install stack-source-map

Usage

require('stack-source-map')()

entry for webpack

var entry = [
  'stack-source-map/register'
  // other entries
  ...
]

Use standalond file

Include file stacksourmap.js in your page, and add one line code:

StackSourceMap()

API

stackSourceMap([option])

  • option.empty empty cache between operations if true, default false

Test babel with webpack

npm install
node server
open http://localhost:8080/bundle

License

MIT

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].