
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
muggle-string
Advanced tools
This library aims to provide codegen helpers and data structure for Vue language plugin API v1.x that does not depend on Volar runtime.
This library aims to provide codegen helpers and data structure for Vue language plugin API v1.x that does not depend on Volar runtime.
A better situation is Volar can use magic-string on the Vue plugin API, but currently can't do this easily.
This solution is just for Vue language plugin API v1.x and planned to be deprecate in v2.
The example is base-on magic-string readme.
<script>problems = 99</script>
<more-script lang="js">console.log( answer )</more-script>
import {
toString,
replace,
} from 'muggle-string';
/** @type {import('@volar/vue-language-core').VueLanguagePlugin} */
const plugin = () => {
return {
name: 'example-vue-language-plugin',
version: 1,
resolveEmbeddedFile(fileName, sfc, embeddedFile) {
if (embeddedFile.fileName.replace(fileName, '').match(/^\.(js|ts|jsx|tsx)$/)) {
const s = embeddedFile.content;
toString(s); // 'problems = 99'
replace(s, 'problems', 'answer');
toString(s); // 'answer = 99'
replace(s, '99', '42');
toString(s); // 'answer = 42'
// add string by Array method directly
s.unshift('var ');
s.push(';');
toString(s); // 'var answer = 42;'
for (const block of sfc.customBlocks) {
if (block.type === 'more-script') {
s.push([
block.content, // text to add
block.name, // source
0, // content offset in source
{
// language capabilities to enable in this segment
hover: true,
references: true,
definition: true,
diagnostic: true,
rename: true,
completion: true,
semanticTokens: true,
},
]);
toString(s); // 'var answer = 42;console.log( answer )'
}
}
}
}
};
};
module.exports = plugin;
FAQs
This library aims to provide codegen helpers and data structure for Vue language plugin API v1.x that does not depend on Volar runtime.
The npm package muggle-string receives a total of 2,210,221 weekly downloads. As such, muggle-string popularity was classified as popular.
We found that muggle-string demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.