Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.24 KB

readme.md

File metadata and controls

39 lines (27 loc) · 1.24 KB

@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)