New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

actionfile

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

actionfile

Makefile alternative without the hassle

  • 0.1.8
  • latest
  • Source
  • npm
  • Socket score

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

Actionfile

Makefile alternative without the hassle. It aims to be very easy and fun to use.

If you don't know what Makefile is, it's a tool that allows you to define a set of tasks that you can run from the command line.

Install

npm install -g actionfile

Usage

actionfile.toml

[hello_world]
  cmd = "echo 'Hello, World!'"
  silent = true # Turn this on if you don't wanna see logs from Actionfile it self
action hello_world

Output: Hello World!

Using Environment Variables

[env]
 path = "./env"
[hello_world]
  cmd = "echo 'Hello, $NAME!'" # Loads the NAME variable from the env file
  silent = true # Turn this on if you don't wanna see logs from Actionfile it self

Output: Hello, John!

FAQs

Package last updated on 17 May 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