
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.
artemetrics
Advanced tools
Creating performance monitors for Apollo implementations of GraphQL.
To get resolver metrics for your GraphQL application, follow these easy steps.
Install the arteMetrics node module into your project
npm install artemetrics
Head over to http://artemetrics.app and sign up to create a new app.
After signing up, create a new app by clicking on the App dropdown
Once you name your new app, you will be redirected to a page containing a unique API key that you can inject into your own project
After copying the API key to your clipboard, paste it into a .env file
API_KEY = '45ed4db2-9ee5-4e30-a391-090a2c9cf0mg';
const arteMetrics = require('artemetrics');
arteMetrics.setApiKey(process.env.API_KEY);
const server = new ApolloServer({
typeDefs,
resolvers,
rootValue: (query) => {
arteMetrics.getName(query);
},
formatResponse: (response) => {
arteMetrics.process(response);
}
});
server.listen({ port: process.env.PORT || 4000 }).then(({ url }) => {
console.log(`🚀 app running at ${url}`);
});
Distributed under the MIT License. MIT
The team at arteMetrics would love contributions to this application! If there is something you would like to add, fork and clone this repo and make a PR!
Sean Arseneault, Brian Chiang, Saejin Kang, Noah King, Joseph Renolayan
FAQs
Creating performance monitors for Apollo implementations of GraphQL.
We found that artemetrics 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
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.