All Projects → Azure → Azure Functions Ux

Azure / Azure Functions Ux

Licence: apache-2.0
Azure Functions UX

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Azure Functions Ux

Serverless Url Shortener
Azure Function for a URL shortening website. Uses serverless functions, Azure Table Storage and Application Insights.
Stars: ✭ 113 (-48.87%)
Mutual labels:  azure-functions
Azure Functions Powershell Worker
PowerShell language worker for Azure Functions.
Stars: ✭ 139 (-37.1%)
Mutual labels:  azure-functions
Mynt
An Azure Functions-based crypto currency trading bot; featuring 10 exchanges, 25 indicators, custom strategy support, backtester and more
Stars: ✭ 165 (-25.34%)
Mutual labels:  azure-functions
Heroes Angular Serverless
TypeScript Node/Express 👉TypeScript Serverless ➕Angular
Stars: ✭ 119 (-46.15%)
Mutual labels:  azure-functions
Saga Orchestration Serverless
An orchestration-based saga implementation reference in a serverless architecture
Stars: ✭ 136 (-38.46%)
Mutual labels:  azure-functions
Supersafebank
Sample Event Sourcing implementation with .NET Core
Stars: ✭ 142 (-35.75%)
Mutual labels:  azure-functions
Azurefunctionsintroduction
Sample Code for Azure Functions
Stars: ✭ 88 (-60.18%)
Mutual labels:  azure-functions
Serverless Azure Functions
Serverless Azure Functions Plugin – Add Azure Functions support to the Serverless Framework
Stars: ✭ 213 (-3.62%)
Mutual labels:  azure-functions
Durablefunctionsmonitor
A monitoring/debugging UI tool for Azure Durable Functions
Stars: ✭ 136 (-38.46%)
Mutual labels:  azure-functions
Sample Stripe Handler
Serverless function that uses the stripe api for a checkout process in a Vue application
Stars: ✭ 155 (-29.86%)
Mutual labels:  azure-functions
Serverlesslibrary
Source code for the Azure Serverless Community Library
Stars: ✭ 119 (-46.15%)
Mutual labels:  azure-functions
Linemessagingapi
LINE Messaging API for .Net
Stars: ✭ 128 (-42.08%)
Mutual labels:  azure-functions
Covid19radar
Open Source / i18n / iOS Android Cross Platform Contact Tracing App by exposure notification framework Xamarin App and Server Side Code
Stars: ✭ 35 (-84.16%)
Mutual labels:  azure-functions
Azure Functions Rs
Create Azure Functions with Rust!
Stars: ✭ 117 (-47.06%)
Mutual labels:  azure-functions
Azure Maven Plugins
Maven plugins for Azure
Stars: ✭ 203 (-8.14%)
Mutual labels:  azure-functions
Serverless
⚡ Serverless Framework – Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more! –
Stars: ✭ 41,584 (+18716.29%)
Mutual labels:  azure-functions
Azure Function Express
⚡️Allows Express.js usage with Azure Functions
Stars: ✭ 146 (-33.94%)
Mutual labels:  azure-functions
Azure Functions Python Worker
Python worker for Azure Functions.
Stars: ✭ 221 (+0%)
Mutual labels:  azure-functions
Azure Functions Templates
Azure functions templates for the azure portal, CLI, and VS
Stars: ✭ 207 (-6.33%)
Mutual labels:  azure-functions
Azure Functions Pack
Easily package your Node.js Functions for Azure Functions
Stars: ✭ 149 (-32.58%)
Mutual labels:  azure-functions

Azure Functions UX

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

What things you need to install the software and how to install them

npm i -g @angular/cli

Project Structure and Important Places

root
│   gulpfile.js - gulp file that gives commands to run most things
│
└───client
│   │   this is the angular client code
│   │
│   └───src
│       │   this is where the non scaffolding angular app code live
│
└───server
│   │   basic server written in nodeJs
│   └───Resources
│   │   │ Resources.Resx is the file we keep all strings, these will get localized and be available in the app by key value
│   │
│   └───src
│       │ server.ts - server entry point
│
└───client-react
│   │   react app
│
└───tests
│   │   E2E tests for the react app written with cypress

Branches

master: (https://functions-staging.azure.com)

This is connected to staging. Staging is swapped to production after being validated

dev: (https://functions-next.azure.com) Make Pull Requests against this branch

This is the next environment. This is never swapped, instead changes from dev get merged into master.

For control and styling samples go to https://functions.azure.com?appsvc.devguide=true

Running in Dev

A step by step series of examples that tell you how to get a development env running from root

npm install
npm start

Go to https://localhost:44400 and https://localhost:44300 and bypass the self-signed cert block before going to portal

To Test changes go to https://portal.azure.com/?websitesextension_functionslocal=true&websitesextension_useReactFrameBlade=true

Running the tests

Angular Unit Tests

cd client
ng test

React Unit Tests

cd client-react
npm run test

React E2E Tests

single run

cd client-react
npm run build
cd ../tests
npm run test:run

development mode

cd client-react
npm start

plus in another terminal

cd tests
npx cypress open

License

This project is licensed under the APACHE 2.0 License - see the LICENSE.md file for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].