
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
weex-loader
Advanced tools
A webpack loader for Weex.
npm install weex-loader babel-loader --save
.we file..js/.css/.html) via src attribute..we file.weex-components under v0.1, please update it to v0.2.@weex-module/xxxx in .js file. see issue.we file.make a webpack config
module.exports = {
entry: './main.we?entry',
output: {
path: './dist',
filename: 'main.js'
},
module: {
loaders: [
{
test: /\.we(\?[^?]+)?$/,
loader: 'weex'
}
]
}
};
specify src attribute
<template src="./main.html"></template>
<style src="./main.css"></style>
<script src="./main.js"></script>
append a weex config in webpack config
weex: {
lang: {
jade: ['jade-html'] // a jade langauge will chain "jade-html-loader"
}
}
main.we
<template lang="jade">
div
text Hello Weex
</template>
.we file as component elementpath/to/component.we in script like require('./foo.we') or write inline element like <element name="foo" src="./foo.we"></element>.template like <foo></foo>.<element name="foo" src="./foo.we"></element>
<template>
<div>
<foo></foo>
<bar></bar>
</div>
</template>
<script>
require('./bar.we')
</script>
require('./foo.we?name="fooo"'). Or specify a name attribute in element, like <element name="fooo" src="./foo.we" ></element>template like <fooo></fooo>.<element name="fooo" src="./foo.we"></element>
<template>
<div>
<fooo></fooo>
<baar></baar>
</div>
</template>
<script>
require('./bar.we?name=baar')
</script>
npm run test
will run mocha testing.
And you can check the specs in test/spec folder.
src attrBug Source Map Offset. Encoding to this problem, please use devtool:"eval-source-map" instead of devtool:"source-map".Bug Can't set debugger breakpoint. I still don't know the reason, but you can debug with debugger keyword.FAQs
a webpack loader for weex
The npm package weex-loader receives a total of 251 weekly downloads. As such, weex-loader popularity was classified as not popular.
We found that weex-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.