
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
php-wasm-iconv
Advanced tools
iconv extension for php-wasm
https://github.com/seanmorris/php-wasm
https://www.npmjs.com/package/php-wasm
php-wasm-iconv can be loaded via dynamic imports:
const php = new PhpWeb({sharedLibs: [
await import('https://unpkg.com/php-wasm-iconv')
]});
The supporting library libiconv.so will automatically be pulled from the package.
You can rely on the default loading behavior if all .so files are served from the same directory as your .wasm files.
const php = new PhpWeb({sharedLibs: ['php8.3-iconv.so']});
You can provide a callback as the locateFile option to map library names to URLs:
const locateFile = (libName) => {
return `https://my-example-server.site/path/to/libs/${libName}`;
};
const php = new PhpWeb({locateFile, sharedLibs: ['php8.3-iconv.so']});
The following options may be set in .php-wasm-rc for custom builds of php-wasm & php-cgi-wasm.
0|static|shared|dynamic
When compiled as a dynamic extension, this will produce the extension php-8.𝑥-iconv.so.
FAQs
iconv for php-wasm.
We found that php-wasm-iconv demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.