0.11.0 • Published 3 years ago
tree-sitter-svelte v0.11.0
Tree-sitter-svelte
Tree-sitter grammar for svelte
Install
npm i tree-sitter-svelte tree-sitterTree-sitter also requires nodemon to run, so also install that if you don’t already have it:
npm i -g nodemonFinally, you will need pnpm. If you’re running Node 16.13 or later, it comes as part of Node so you can simply run the following to activate it:
corepack enableDev
After installation (npm i),
npm run devUsage
To get started with exploring the grammar in a web-ui. Run:
NOTE: emcc must be installed and in your path
npm run uiTo use the grammar from javascript:
const Parser = require("tree-sitter");
const Svelte = require("tree-sitter-svelte");
const parser = new Parser();
parser.setLanguage(Svelte);
const sourceCode = `
<script context="module">
    let name = 'world';
</script>
<h1>Hello {name'<>{}``"\\''""``{}}!</h1>
`;
const tree = parser.parse(sourceCode);
console.log(tree.rootNode.toString());
// (document
//    (script_element
//        (start_tag (tag_name)
//            (attribute (attribute_name) (quoted_attribute_value (attribute_value))))
//        (raw_text)
//        (end_tag (tag_name))
//    )
//    (element
//        (start_tag (tag_name))
//        (text) (raw_text_expr) (text)
//        (end_tag (tag_name)
//    )
//  )
//)Languages supported:
- JavaScript/TypeScript
 - Rust
 - Go
 - Nim
 - Python