1.4.0 • Published 1 month ago

@lottiefiles/relottie-stringify v1.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

relottie-stringify

npm npm bundle size npm npm

Compiler for unified. Serializes last syntax trees to LottieJSON

Use

yarn add @lottiefiles/relottie-stringify
import { unified } from 'unified';
import { visit } from 'unist-util-visit';

import type { Attribute } from '@lottiefiles/last';
import relottieParse from '@lottiefiles/relottie-parse';
import relottieStringify from '@lottiefiles/relottie-stringify';

const processor = unified().use(relottieParse).use(relottieStringify);

const tree = processor.parse('{"v":"5.5.7"}');

visit(tree, 'attribute', (node: Attribute) => {
  node.key = 'new_v';
});

const output = processor.stringify(tree);

output will equal

{"new_v":"5.5.7"}

dotLottie

You can use dotLottie.js for converting a LottieJSON into .lottie format

Security

As last properties can have expressions, and improper use of last can open you up to cross-site scripting cross-site scripting (XSS). Carefully assess each plugin and the risks involved in using them.

Contribute

Any contributions are welcome.

Acknowledgments

Legal

License © LottieFiles

1.4.0

1 month ago

1.2.0

7 months ago

1.0.2

10 months ago

1.1.0

7 months ago

1.0.9

8 months ago

1.0.8

8 months ago

1.3.4

6 months ago

1.0.7

8 months ago

1.3.2

6 months ago

1.0.5

9 months ago

1.3.1

6 months ago

1.2.2

7 months ago

1.0.4

9 months ago

1.3.0

6 months ago

1.2.1

7 months ago

1.0.3

10 months ago

1.0.0

11 months ago

0.0.0

11 months ago