본문 바로가기

반응형

server

(6)
NPM - Nodemon Usually, to reflect the changes in the backend on the front end when developing an app, we have to save changes and rerun the server. Nodemon is a live server library that reflects the changes automatically without us having to do so. Implementation Installing Nodemon npm i nodemon Running Once installed we can either run the nodemon directly using the path or NPM commend ▶ Running Directly Run ..
Creating a Server with Node.js The web server contains all the information about the application and allows users to access the data. Typically, getting the request and sending the data is done with HTTP(S), and today we will see the ways to create a server using the native Node.js module, 'http', in Node.js HTML 삽입 미리보기할 수 없는 소스
.NET, Angular Deployment - Linux After creating an application we need to deploy the app for the world to see. In this post, we will see how we can deploy a .NET & Angular application to a Linux server using Digital Ocean cloud service. HTML 삽입 미리보기할 수 없는 소스
NPM - JSON Server JSON server is one of the NPM packages that provides a server for testing. It stores data in a JSON format and is very easy to work withList of Contents">HTML 삽입미리보기할 수 없는 소스 Implementation Installing the Package Setting Up the NPM command Running the Server Working with Data Angular ..
Server Memory - Redis Redis is a server memory that stores data with a key-value pair. It does not depend on the database so it takes the burden of having to manage the data and it is fast. In addition, compared to local storage, another option to store data without depending on a database, it gives us control over the data. Well, enough talking, let's get into it. Why Do We Use It? Fast Control over the data Persist..
Server Architecture - Distributing Projects Server Structure An interface is a middleman between the browser and the server. It sends a request to a server and handles the response from it. The interface has a dependency on the infrastructure which also has a dependency on the application core project that defines things that are specific to the project such as business logic hence has no dependency on any other project. Implementation 1...

728x90