Package Exports
- code-fns
- code-fns/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (code-fns) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
code-fns
A utility library for visualizing code.
Install
npm install code-fnsPurpose
Most code highlighters in JavaScript rely on HTML and CSS. When working outside of a standard web page, however, these formats become difficult to use. Code-fns is domain-agnostic, and will export tokens as plain objects to be converted to whatever format you choose. Specifically, code-fns was built for use in the Motion Canvas project, for visualizing code in videos and animations. Code-fns may also compute the transformation between different code blocks, so that you may animate between them.
Usage
You must initialize the project with ready.
import { ready } from 'code-fns';
await ready();Highlighting code
Once initialized, you may highlight your code with
import { ready, color } from 'code-fns';
await ready();
const code = color(['tsx', '() => true']);Transitioning code (for animations)
Code transitions use comment templating to adjust code. For instance, in any
language with multiline comments using /* */, a tagged code string would look
like
(/*< params >*/) => {};You may then replace these tags using substitute.
import { ready, substitute, toString } from 'code-fns';
await ready();
const code = `(/*< params >*/) => { }`;
const subbed = substitute(['tsx', code], { params: 'input: any' });
console.log(toString(subbed));
// (input: any) => { }With two substitutions, however, you may build a transition, which may serve as the basis for an animation.
import { ready, transition, toString } from 'code-fns';
await ready();
const code = `(/*< params >*/) => { }`;
const transform = transition(
['tsx', code],
{ params: 'input' },
{ params: 'other' },
);The transform object will contain an array of tokens, each of which with a
provinance property of either "create", "delete", or "retain".
import { ready, transition, toString } from 'code-fns';
await ready();
const transform = transition(['tsx', '/*<t>*/'], { t: 'true' }, { t: 'false' });