New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@nitric/boxygen

Package Overview
Dependencies
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nitric/boxygen

Boxygen NodeJS SDK

latest
Source
npmnpm
Version
0.0.1-rc.2
Version published
Maintainers
5
Created
Source

Boxygen Node.js SDK

Build container images with Javascript and Typescript!

import { Workspace } from "@nitric/boxygen";

// Start a new workspace
Workspace.start(async (workspace) => {
	// Build a hello world image
	await workspace
		// start FROM alpine
		.image('alpine')
		// Set entrypoint and command
		.config({
			entrypoint: ['echo'],
			cmd: ['hello world!']
		})
		// Commit out image with a tag of hello-world
		.commit('hello-world');
});

Prerequisites

  • Node.js 12+
  • Docker (support for podman is definetely possible)

Examples

FAQs

Package last updated on 15 Nov 2021

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