Updated Choice of Technology (markdown)

SinusFox
2024-09-13 18:00:42 +02:00
parent f6f2e83d7a
commit 36b7a189e7
+1 -1
@@ -2,4 +2,4 @@
When planning a project, one must decide on what technologies to use. This page covers the reasons behind those choices in our project. When planning a project, one must decide on what technologies to use. This page covers the reasons behind those choices in our project.
## The Web Framework ## The Web Framework
We use [Next.JS](https://nextjs.org/) as web framework. As a React-based framework built for easy and quick development, it is a solid choice for a project with a tight time limit and developers new to web programming/designing. On the more technical side, the framework offers support for any CSS library and asynchronous components and data fetching. It also is quick in testing a web site by using the `create-next-app` cli command. But the user also gets a major advantage out of Next.JS: A quick website due to its mix of a static site with dynamic loading of contents when needed. The features used in this project won't be covered in this chapter, though. We use [Next.JS](https://nextjs.org/) as web framework. As a React-based framework built for easy and quick development, it is a solid choice for a project with a tight time limit and developers new to web programming/designing. On the more technical side, the framework offers support for any CSS library and asynchronous components and data fetching. It also is quick in testing a web site by using the `create-next-app` cli command. But the user also gets a major advantage out of Next.JS: A quick website due to its mix of a static site with dynamic loading of contents when needed. This is an important part since the Operations Research Tool will have a fixed layout and design, but needs to access dependencies to calculate solutions. The features used in this project won't be covered in this chapter, though.