architect / package

Package .arc apps for deployment with Cloudformation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@architect/package GitHub CI status

@architect/package packages @architect projects as AWS::Serverless-compatible JSON. Converts Architect projects into a AWS Serverless Application Model (SAM)-compatible format.

Install

npm i @architect/package

API

All of this module's methods take as input an @architect/inventory-parsed Architect project.

pkg(arc)

Example Usage

let inventory = require('@architect/inventory')
let pkg = require('@architect/package')

// fake out an .arc file as a string
let arcString = `
@app
mybasicapp

@http
get /
`

// export as sam
let inv = await inventory({ rawArc: arcString, deployStage: 'staging' })
let sam = pkg(inv)
console.log(sam)

About

Package .arc apps for deployment with Cloudformation

License:Apache License 2.0


Languages

Language:JavaScript 98.5%Language:TypeScript 0.8%Language:HTML 0.6%Language:CSS 0.2%