Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danwahlin/fluidangular
Angular/Fluid demos
https://github.com/danwahlin/fluidangular
angular fluidframework
Last synced: about 2 months ago
JSON representation
Angular/Fluid demos
- Host: GitHub
- URL: https://github.com/danwahlin/fluidangular
- Owner: DanWahlin
- Created: 2020-09-18T18:49:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-06T15:23:51.000Z (almost 4 years ago)
- Last Synced: 2024-12-22T09:06:04.190Z (2 months ago)
- Topics: angular, fluidframework
- Language: TypeScript
- Homepage:
- Size: 494 KB
- Stars: 32
- Watchers: 4
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Fluid Framework Angular Examples Repository
This codebase includes examples of collaborative applications built with the Fluid Framework and Angular. For documentation about the Fluid Framework, go to https://FluidFramework.com. The Fluid Framework repository lives at https://github.com/Microsoft/FluidFramework.
Each example is a standalone application that defines a Fluid Container and loads it into a webpage. To get started, clone the repo, go into a
example folder that you want to run, and follow the instructions in the example's `readme.md` file.If you're using VS Code and don't already have the [Angular Language service](https://marketplace.visualstudio.com/items?itemName=Angular.ng-template&WT.mc_id=m365-0000-dwahlin) we recommend installing it.
## NOTE
Fluid is isomorphic and currently relies on Node objects such as crypto. As a result you'll see a postinstall script in the package.json file that modifies the build. The file paths that are patched depend on your version of Angular so you may have to open the `patch-webpack.js` and modify it if you're using Angular 11+ (this example is using Angular 10).
**Angular 11+** `const f ='node_modules/@angular-devkit/build-angular/src/webpack/configs/browser.js';`
**Angular < 11** `const f = 'node_modules/@angular-devkit/build-angular/src/angular-cli-files/models/webpack-configs/browser.js';`