Coder Social home page Coder Social logo

codechalk's Introduction

CodeChalk

⚙ Simple and neat terminal demo code outputs

CodeChalk is a simple util to help you highlighting demo code outputs to terminal.Especially suitable to use in your CLI programs or template generators, showing some simple code blocks to help your users to quickly get started.

Demo

Using default highlighter to highlight the example code img1

Usage

Install

# Using Yarn
yarn add codechalk --dev
# Using NPM
npm install codechalk -D

Highlight your code

import { highlight } from 'codechalk'

/** Step 1: Render the desired content using highlight */
const output = await highlight(`export async function test(target?: ApiEnvParam): boolean {
  const templateFile = await generateTemplateFromTarget(target)
  if (templateFile.hasError) return false
  switch (templateFile.type) {
    case SUCCESS:
    case INFO:
      return true
    default:
      return false
  }
}
`, 'ts')

/** Step 2: Log the output */
console.log(output)

API introductions

CodeChalk is a small util that only contains 2 exported functions.

highlight

API Definition

async function highlight(code: string, lang='javascript', theme='monokai'): Promise<string>

Usage

/** Default render - using jsParser + monokai theme */
const result1 = await highlight('console.log("hahaha")')

/** Customize render - using TypeScript + monokai theme */
const result2 = await highlight('console.log("hahaha")', 'ts')

/** Customize render - using TypeScript + one-dark-pro theme */
const result3 = await highlight('console.log("hahaha")', 'ts', 'one-dark-pro')

configureShiki

API Definition

function configureShiki(options: Partial<ShikiHighlighterOptions>): void

Usage

/** Full usage, see Shiki's configuration demo */
configureShiki({
  /** Preload syntax parsers */
  langs: ['javascript', 'css', 'html', 'vue-html', 'typescript', 'jsx', 'tsx'],
  /** Preload themes */
  themes: ['monokai', 'one-dark-pro', 'material-darker']
})

/** After configured, call shiki for perform highlighting */
const output = await highlight(`export async function test(target?: ApiEnvParam): boolean {
  const templateFile = await generateTemplateFromTarget(target)
  if (templateFile.hasError) return false
  switch (templateFile.type) {
    case SUCCESS:
    case INFO:
      return true
    default:
      return false
  }
}
`, 'ts')
console.log(output)

Credits

  • CodeChalk uses Shiki to generate highlighted code tokens.
  • Meanwhile, CodeChalk relies Chalk for styling up text in terminal.

License

MIT © Souler Ou

codechalk's People

Contributors

a20185 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.