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

exit_on_eof

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exit_on_eof

Run a command as a child process and exit process upon EOF (^D)

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
157
decreased by-28.31%
Maintainers
1
Weekly downloads
 
Created
Source

exit_on_eof

Helper script for Elixir/Phoenix projects using npm scripts as a watcher instead of Brunch

npm install -g exit_on_eof

Description

Elixir/Phoenix projects use Brunch by default for front-end workflows, but this can be modified to use a simpler approach like npm scripts as described here. A problem arises though when killing/exiting the server. Phoenix sends an EOF signal through stdin to the watch process to indicate it should terminate. npm scripts, like many commands, does not respond to EOF like SIGINT so the node processes remain running.

This script helps deal with this issue by wrapping a user-given command in a parent process that is sensitive to both SIGINT and EOF.

To read more about this sensitivity to EOF as per Chris McCord, view this

(Both Webpack and Brunch were actively PR'd to allow for this behavior. This is a stop-gap until a more elegant solution presents.)

###Usage

In Phoenix project update config/dev.exs:

config :{YOUR_PROJECT_NAME_ATOM}, {YOUR_PROJECT_NAME}.Endpoint
  ...
  watchers: [exit_on_eof: ["npm run watch"]]

In your package.json:

{
  ...
  "scripts": {
    ...
    "watch": some set of commands
    ...
  },
  ...
}

When you start the server your command should run and when you stop the server the node processes that were spun up to manage the front-end build will also be killed.

Keywords

FAQs

Package last updated on 05 Jun 2017

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