
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
CakePop is a set of Node.js build helpers and CoffeeScript Cake extensions. It provides various utility wrappers for bash shell commands and other Node.js binary process executions.
Notwithstanding it's CoffeeScript-friendliness, CakePop runs off of real JavaScript without CoffeeScript dependencies, and is thus appropriate for use in pure JavaScript code (e.g., with Jakefiles).
See the API documentation for full information, or CakePop's own
Cakefile for some example usage.
Documentation is presently in source comments in cakepop.coffee. While not
ideal, the source is quite readable. There will be a more friendly version in
the future.
Warning: The library is currently undergoing a lot of restructuing and change, so expect the API to drastically change until things settle down. Breaking changes will be versioned (with git tags and in NPM), but that's about it for now.
To get the library:
$ npm install cakepop
CakePop does not install dependencies for tasks that are shell-invoked,
to keep the library small and let the user install the proper version of a
library (like coffeelint). So, you will need manual installations for the
following:
npm install coffee-scriptnpm install coffeelintHere are some common Cakefile tasks that CakePop can help with.
Exec / spawn a bash process:
utils = require("cakepop").utils
task "hello1", "Exec 'hello world'", ->
utils.exec "echo Hello World"
task "hello2", "Spawn 'hello world'", ->
utils.spawn "echo", ["Hello World"]
Build CoffeeScript files to JavaScript:
builder = new (require("cakepop").CoffeeBuild)()
task "source:build", "Build CoffeeScript to JavaScript.", ->
builder.build [
"foo.coffee"
{ "src_dir": "dest_dir" }
]
See the API documentation for more.
CakePop is Copyright 2012 Ryan Roemer. Released under the MIT License.
FAQs
CoffeScript Cake extensions.
We found that cakepop 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.