
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.
moewe (german for seagull 🐣) is a open source, privacy preserving crash logging and config platform that can be self-hosted.
During foss development, I always wished there was a simple platform for crash reporting and knowing roughly how many people are using the software. mœwe aims to be exactly this without the privacy concerns of the large analytics solutions. I hope this is useful to you.
yours, Robin
find more information at moewe.app
initialize the client within your web applications entry file (like index.tsx)
// setup Moewe
await new moewe.Moewe({
host: "open.moewe.app",
project: "projectId",
app: "appId",
}).init();
render(...)
That's it 🎉
you can now use the moewe() client within your app:
moewe().events.appOpen({});
moewe().log.debug("this is a debug message");
moewe().crash("an error occurred", null);
// report user feedback
moewe().ui.showFeedbackDialog(); // using package UI
moewe().feedback(...) // manually
// get flag value from server
moewe().config.flagString("fav_food");
mœwe allows your client to access variables defined on the server. This makes it possible to:
you can access these flags with the following function.
Make sure to await the moewe init() call before using feature flags. Otherwise all flags are null
moewe().config.flagString("abc");
moewe().config.flagInt("def");
moewe().config.flagBool("ghi");
You can log crashes using the moewe.crash(...) function. You can also use this for wrapping your application
FAQs
Unknown package
We found that moewe demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.