
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.
nunu-studio
Advanced tools
nunuStudio is a web based game engine for 3D and 2D game development with support for VR and AR
npm run docs.npm install --legacy-peer-depsnpm run build



The project uses Webpack to build and bundle its code base.
Steps needed to build the project:
npm install.
npm install --legacy-peer-deps insteadcd source/page && npm installnpm run buildnpm run startloadApp(file, id) method.<html>
<head>
<script src="nunu.min.js"></script>
</head>
<body onload="Nunu.App.loadApp('pong.nsp', 'canvas')">
<canvas width="800" height="480" id="canvas"></canvas>
</body>
</html>
nunu.min.js and place into static/js folder of your nuxt instancetemplate area where you want it, for example:<template>
<div>
<canvas
id="canvas"
width="800"
height="480"
/>
</div>
</template>
head() {
return {
script: [
{
hid: 'Nunu',
src: 'assets/js/nunu.min.js',
defer: true,
callback: () => {
Nunu.App.loadApp('assets/file.nsp', 'canvas') //add file to load in here
},
},
],
},
}
Nunu as usual within the app.FAQs
nunuStudio is a web based game engine for 3D and 2D game development with support for VR and AR
The npm package nunu-studio receives a total of 10 weekly downloads. As such, nunu-studio popularity was classified as not popular.
We found that nunu-studio 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.