Find entry level software positions posted on Github Jobs.
This project uses Create React App v3 and netlify-lambda v1 together in a Netlify Dev workflow.
Source: src/lambda is specified and can be changed in the package.json script: "build:lambda": "netlify-lambda build src/lambda".
Dist: Each JavaScript file in there will be built for Netlify Function deployment in /built-lambda, specified in netlify.toml.
All functions (inside src/lambda) are compiled with webpack using Babel, so you can use modern JavaScript, import npm modules, etc., without any extra setup.
Get things fired up by cloning the repo and doing the following
# Make sure you have the [Netlify CLI](https://github.com/netlify/cli) installed
npm i -g netlify-cli
# install all dependencies
npm install
## done every time you start up this project
ntl dev ## nice shortcut for `netlify dev`, starts up create-react-app AND a local Node.js server for your Netlify functionsThis fires up Netlify Dev, which:
- Detects that you are running a
create-react-appproject and runs the npm script that containsreact-scripts start, which in this project is thestartscript - Detects that you use
netlify-lambdaas a function builder, and runs the npm script that containsnetlify-lambda build, which in this project is thebuild:lambdascript.
You can view the project locally via Netlify Dev, via localhost:8888.
During deployment, this project is configured, inside netlify.toml to run the build command: npm run build.
For more information, visit here