simple-code-frame
TypeScript icon, indicating that this package has built-in type declarations

1.3.0 • Public • Published

simple-code-frame

Tiny library for displaying code frames. The main difference to @babel/code-frame is that this library doesn't ship with a parser. It is soley aimed at taking text input and adding column + line markers.

Usage

npm install simple-code-frame
# or via yarn
yarn add simple-code-frame

Usage

import { createCodeFrame } from 'simple-code-frame';

const str = `foo\nbar\nbob`;

const codeFrame = createCodeFrame(str, 1, 2);
console.log(codeFrame);
// Logs:
//   1 | foo
// > 2 | bar
//     |  ^
//   3 | bob

License

MIT, see the license file.

/simple-code-frame/

    Package Sidebar

    Install

    npm i simple-code-frame

    Weekly Downloads

    47,366

    Version

    1.3.0

    License

    MIT

    Unpacked Size

    20.2 kB

    Total Files

    9

    Last publish

    Collaborators

    • marvinhagemeister