Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
875 views
in Technique[技术] by (71.8m points)

svelte - Importing external libraries like node.js special syntax

I'm trying to use an external library in Svelte whose instructions are for node.js, for example:

var lunr = require("lunr")
require("lunr-languages/lunr.stemmer.support")(lunr)
require('lunr-languages/lunr.multi')(lunr)
require("lunr-languages/lunr.de")(lunr)

The first import I simply converted to import lunr from "lunr" and it works as expected (after npm install of course). However, I have no idea how to import the other 3 lines with that special syntax. Any advice?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

That special syntax is calling the required function with lunr as an argument. It can be rewritten as follows:

import lunr from 'lunr';
import stemmerSupport from 'lunr-languages/lunr.stemmer.support';
import multi from 'lunr-languages/lunr.multi';
import de from 'lunr-languages/lunr.de';

stemmerSupport(lunr);
multi(lunr);
de(lunr);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...