- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
StackTrace-Parser
This parser parses a stack trace from any browser or Node.js and returns an array of hashes each representing a line.
The goal here is to support every browser even old Internet Explorer stack traces will work.
Install
npm install stacktrace-parser
Usage
import * as stackTraceParser from 'stacktrace-parser';
try {
throw new Error('My error');
} catch(ex) {
const stack = stackTraceParser.parse(ex.stack);
}
Every line contains five properties: lineNumber, methodName, arguments, file and column (if applicable).
TODOs
- parse stack traces from other sources (Ruby, etc) (v0.3)
Contribution
If you want to contrib, then do you thing, write tests, run npm run test ensure that everything is green,
commit and make the pull request. Or just write an issue, or let's talk.