An open API service indexing awesome lists of open source software.

https://github.com/thundermiracle/typescript-express-error

Sample of how to make source map readable
https://github.com/thundermiracle/typescript-express-error

explorer source-map

Last synced: 4 months ago
JSON representation

Sample of how to make source map readable

Awesome Lists containing this project

README

          

# typescript-express-error

A simple typescript + express project with errors for testing `source-map`.

## Install

```shell
yarn
```

## Start

```shell
yarn build && node dist/main.js
```

## Access

http://localhost:3000

will throw 500(internal server error).

## Read Compiled SourceMap

**node@16 is required.**

```shell
yarn build
cd read-sourcemap
yarn && node index.js
```