nitric
nitric copied to clipboard
Nitric is a multi-language framework for cloud applications with infrastructure from code.
An early decision when creating Nitric was to use functions, rather than constructors, to create resources. One of the reasons for this decision was the challenge creating fluent interfaces off...
This change is required to allow providers to be compiled into other code (reusable)
## Feature Request ### Suggestion Allow for API and other entrypoint ports to be set to static values based on the resource's name. ### Value Allow local development which includes...
Using the following sample code ``` import express from "express"; import { http } from "@nitric/sdk"; const app = express(); app.get("/test/", async (req, res) => { console.log(req.query); }); http(app, ()...
## Bug Report ### Issue When running `nitric up` with the GCP provider an error occurred `Invalid value specified for cpu. For the specified value, maxScale may not exceed 10.`....
## Enhance documentation E.g. For each language document how to add data such as a user object from a middleware to the context object
While CORS can currently be handled using middleware and by registering OPTIONS routes, we'd like to build this support into the framework to make it more convinient and ideally handle...
Allow existing buckets in the AWS account targeted by a stack to be adopted into a nitric stack. See the existing feature for importing secrets for [reference](https://nitric.io/docs/reference/providers/aws/configuration). - If the...
Since locking the pulumi versions for stability, resource versions are currently hardcoded. We should allow them to be overridden at the stack config level.
## Feature Request ### Suggestion Allow the nitric server to run multiple project on the local machine. ### Value Sometimes we need to develop multiple project on the local machine....