DEV Community

Cover image for Melhores bibliotecas p/ construir console apps com .NET CORE
Gabriel Barcelos | C#, AspNetCore, ReactJS
Gabriel Barcelos | C#, AspNetCore, ReactJS

Posted on • Updated on

 

Melhores bibliotecas p/ construir console apps com .NET CORE

Updates:

10 de Outubro de 2020 - Typin adicionado.

Gui.cs

GUI.CS é uma biblioteca idealizada por Miguel de Icaza (#MONO, #GNOME, #XAMARIN, #MICROSOFT).
Acelera o desenvolvimento de console apps em .NET, .NET Core, e Mono, rodando em Windows, Mac, e Linux/Unix.

Alt Text

Controles visuais:

Button
CheckBox
ComboBox
Dialog
OpenDialog
SaveDialog
FrameView
Hex viewer/editor
Label
ListView
Menu
MessageBox
ProgressBar
Radio buttons
Time & Date Fields
TextField
Text Editor
ScrollView
ScrollBarView
StatusBar
Window

Github: https://github.com/migueldeicaza/gui.cs

Spectre Console

Facilita estilização de texto, e acesso a uma paleta de cores padronizada.

Alt Text.

Typin

Declarative framework for interactive CLI applications.

Alt Text

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.