Socket
Socket
Sign inDemoInstall

svelte-ast-print

Package Overview
Dependencies
Maintainers
0
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-ast-print

Print Svelte AST nodes as a string. Aka parse in reverse.


Version published
Maintainers
0
Created
Source

svelte-ast-print

NPM Version

Print Svelte AST nodes as a string.
A.k.a. parse in reverse.

This is what you need to create codemods - e.g. for migration between Svelte versions syntaxes.

Documentation

https://xeho91.github.io/svelte-ast-print

Acknowledgements

This package depends on:

  1. esrap for printing ESTree specification-compliant AST nodes
  2. zimmerframe for walking on the AST nodes

Limitations

[!WARNING] TypeScript isn't supported, yet.
At the moment Svelte parser skips TypeScript related syntax. Also, esrap doesn't recognize TypeScript related AST nodes.


[!IMPORTANT] It ignores any previous formatting. The current focus is to be able to write codemods as soon as possible - because right now, there are no alternatives.

If you need to format modified and stringified Svelte AST, use available formatters for Svelte:


[!NOTE] Is not optimized for performance, yet.
See Roadmap

Getting started

  1. Use the package manager of your choice to install this package:

    npm
    npm install svelte-ast-print
    
    yarn
    yarn add svelte-ast-print
    
    pnpm
    pnpm add svelte-ast-print
    
    bun
    bun add svelte-ast-print
    
  2. Incorporate it into your project, for example using Node.js and with the Svelte parse method:

    import fs from "node:fs";
    
    import { print } from "svelte-ast-print";
    import { parse } from "svelte/compiler";
    
    const originalSvelteCode = fs.readFileSync("src/App.svelte", "utf-8");
    let svelteAST = parse(originalSvelteCode, { modern: true });
    //                                          👆 For now, only modern is supported.
    //                                             By default is 'false'.
    //                                             Is it planned to be 'true' from Svelte v6+
    
    // ...
    // Do some modifications on this AST...
    // e.g. transform `<slot />` to `{@render children()}`
    // ...
    
    const output = print(svelteAST); // AST is now a stringified code output! 🎉
    
    fs.writeFileSync("src/App.svelte", output, { encoding: " utf-8" });
    

Contributing

Take a look at contributing guide.

This project follows the all-contributors specification. Contributions of any kind are welcome!

💌 to these people:


Mateusz Kadlubowski

💻 🚧 📖 🚇 ⚠️

Support

If you don't have time, but you need this project to work, or resolve an existing issue, consider sponsorship.

Author

Mateusz "xeho91" Kadlubowski

License

Project License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 10 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc