Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

samsu

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

samsu

Fast CLI for Fast Backend

  • 0.0.0-beta.1
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Samsu 🏙️

Fast CLI for Fast Backend

Before Use

Hot refresh didn't work because of the Node.js Async Import Function.

We also don't want to converting this package into CommonJS module.

So, You need to use nodemon, it gonna work because it rerun directly Node script.

Please create a scripts/start.js file and use spawn(pnpm samsu) to start with nodemon scripts/start.js

Something like this:

package.json:

"scripts": {
  "start": "nodemon scripts/start.js"
}

scripts/start.js:

import { spawn } from 'child_process'

const p = await spawn('pnpm samsu')
p.stdout.on('data', console.log)
p.stderr.on('data', console.log)

And run: npm start

License

MIT

FAQs

Package last updated on 02 Feb 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc