jolt-framework
v1.0.5
Published
For easily deploying static websites with their own serverless functions hosted on AWS
Readme
Jolt
Jolt is a framework for testing and deploying JAMstack apps with serverless functions.
Getting Started
Install Jolt
npm i -g jolt-frameworkCreate an app
npx create-react-app jolt-first-project cd jolt-first-projectpaste the isnto the contents of
src/App.jsfunction App() { return ( <script> fetch(".functions/helloWorld").then(res => console.log(res)) </script> ); } export default App;Create a functions folder
mkdir functionsJolt init
jolt initAdd helloWorld function
jolt mklam
