Skip to content

Commit

Permalink
Merge pull request #963 from iharbukach/master
Browse files Browse the repository at this point in the history
feat(node): add .Net & Next.js frameworks
  • Loading branch information
filipeaaoliveira authored Oct 28, 2024
2 parents b67e056 + 71695c4 commit dd8ab99
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,9 @@
"programming": {
"framework": {
"Fastapi": "FastAPI",
"Graphql": "GraphQL"
"Graphql": "GraphQL",
"Dotnet": "DotNet",
"Nextjs": "NextJs"
},
"language": {
"Javascript": "JavaScript",
Expand Down
14 changes: 14 additions & 0 deletions diagrams/programming/framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ class Django(_Framework):
_icon = "django.png"


class Dotnet(_Framework):
_icon = "dotnet.png"


class Ember(_Framework):
_icon = "ember.png"

Expand Down Expand Up @@ -60,6 +64,10 @@ class Micronaut(_Framework):
_icon = "micronaut.png"


class Nextjs(_Framework):
_icon = "nextjs.png"


class Quarkus(_Framework):
_icon = "quarkus.png"

Expand All @@ -84,6 +92,10 @@ class Svelte(_Framework):
_icon = "svelte.png"


class Vercel(_Framework):
_icon = "vercel.png"


class Vue(_Framework):
_icon = "vue.png"

Expand All @@ -92,4 +104,6 @@ class Vue(_Framework):

FastAPI = Fastapi
GraphQL = Graphql
DotNet = Dotnet
NextJs = Nextjs
JHipster = Jhipster
9 changes: 9 additions & 0 deletions docs/nodes/programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ Node classes list of the programming provider.
<img width="30" src="/img/resources/programming/framework/django.png" alt="Django" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Django**

<img width="30" src="/img/resources/programming/framework/dotnet.png" alt="Dotnet" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Dotnet**, **DotNet** (alias)

<img width="30" src="/img/resources/programming/framework/ember.png" alt="Ember" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Ember**

Expand Down Expand Up @@ -122,6 +125,9 @@ Node classes list of the programming provider.
<img width="30" src="/img/resources/programming/framework/micronaut.png" alt="Micronaut" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Micronaut**

<img width="30" src="/img/resources/programming/framework/nextjs.png" alt="Nextjs" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Nextjs**, **NextJs** (alias)

<img width="30" src="/img/resources/programming/framework/quarkus.png" alt="Quarkus" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Quarkus**

Expand All @@ -140,6 +146,9 @@ Node classes list of the programming provider.
<img width="30" src="/img/resources/programming/framework/svelte.png" alt="Svelte" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Svelte**

<img width="30" src="/img/resources/programming/framework/vercel.png" alt="Vercel" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Vercel**

<img width="30" src="/img/resources/programming/framework/vue.png" alt="Vue" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Vue**

Expand Down
Binary file added resources/programming/framework/dotnet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/programming/framework/nextjs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/programming/framework/vercel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit dd8ab99

Please sign in to comment.