Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theangrybyrd/paket-lock-diff
This is a tool to analyze two paket.lock files showing additions, removals, upgrades and downgrades.
https://github.com/theangrybyrd/paket-lock-diff
dotnet dotnet-core fsharp nuget paket
Last synced: 4 months ago
JSON representation
This is a tool to analyze two paket.lock files showing additions, removals, upgrades and downgrades.
- Host: GitHub
- URL: https://github.com/theangrybyrd/paket-lock-diff
- Owner: TheAngryByrd
- Created: 2020-09-17T13:30:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-16T15:30:19.000Z (over 1 year ago)
- Last Synced: 2023-09-17T01:13:30.209Z (over 1 year ago)
- Topics: dotnet, dotnet-core, fsharp, nuget, paket
- Language: F#
- Homepage: https://paket-lock-diff.azurewebsites.net/
- Size: 291 KB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Paket Lock Diff Tool
## What
This is a tool to analyze two [paket.lock](https://fsprojects.github.io/Paket/lock-file.html) files. The report generates a few lists:
- Additions made
- Removals made
- Version Upgrades
- Version Downgrades## Why
When looking at git diffs between two lock files, it can be hard to get an overall picture of what changed, especially if you have many [transitive dependencies](https://fsprojects.github.io/Paket/faq.html#transitive).
## How
1. [Give it a try here](https://paket-lock-diff.azurewebsites.net/)
2. Copy and paste [this lock file](https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/0.22.0/paket.lock) into `Older LockFile` field.
3. Copy and paste [this lock file](https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/master/paket.lock) into `Newer LockFile` field.
4. The app should analyze the lock files and give you some results.---
## Install pre-requisitesYou'll need to install the following pre-requisites in order to build SAFE applications
* [.NET Core SDK](https://www.microsoft.com/net/download) 6.0 or higher
* [Node 16](https://nodejs.org/en/download/)## Starting the application
Before you run the project **for the first time only** you must install dotnet "local tools" with this command:
```bash
dotnet tool restore
```To concurrently run the server and the client components in watch mode use the following command:
```bash
dotnet run
```Then open `http://localhost:8080` in your browser.
The build project in root directory contains a couple of different build targets. You can specify them after `--` (target name is case-insensitive).
To run concurrently server and client tests in watch mode (you can run this command in parallel to the previous one in new terminal):
```bash
dotnet run -- RunTests
```Client tests are available under `http://localhost:8081` in your browser and server tests are running in watch mode in console.
Finally, there are `Bundle` and `Azure` targets that you can use to package your app and deploy to Azure, respectively:
```bash
dotnet run -- Bundle
dotnet run -- Azure
```## SAFE Stack Documentation
If you want to know more about the full Azure Stack and all of it's components (including Azure) visit the official [SAFE documentation](https://safe-stack.github.io/docs/).
You will find more documentation about the used F# components at the following places:
* [Saturn](https://saturnframework.org/)
* [Fable](https://fable.io/docs/)
* [Elmish](https://elmish.github.io/elmish/)