node 大写_大写Node.js模块

node 大写

Today, let's see a third party module that helps us in working with upper-case letters without necessarily typing them in upper-case in our source code.

今天,让我们看一个第三方模块,它可以帮助我们处理大写字母,而不必在源代码中以大写字母键入它们。

You may find it useless! But it's very important.

您可能会发现它没有用! 但这很重要。

For example, you may have a form where you require your users to fill in upper-case letters only. You may wish to add a function where any typed in the letter appears in upper-case even though typed in lower-case from the keyboard.

例如,您可能有一个表单,要求您的用户仅填写大写字母。 您可能希望添加一个功能,即使从键盘输入小写字母,字母中的任何字母都以大写形式显示。

Like said before, Node modules are like libraries which help us perform specific tasks. Node.JS is always considered powerful because it has a very large ecosystem of third-party modules.

如前所述,Node模块就像是可以帮助我们执行特定任务的库。 Node.JS一直被认为是功能强大的,因为它具有非常庞大的第三方模块生态系统。

The upper-case module is a third-party module built by some experts to help us.

大写模块是一些专家构建的第三方模块,可以帮助我们。

Take Note! You should have Node.js installed in your PC.

做记录! 您应该在PC中安装了Node.js。

With Node.js already up and running, let's get started.

在Node.js已经启动并运行的情况下,让我们开始吧。

Now, let's get started.

现在,让我们开始吧。

First of all, install the upper-case module by typing npm install upper-case via the command line.

首先,通过在命令行中键入npm install upper-case来安装大写 模块

upper-case module in Node.js

Wait for a while as it downloads.
NB: Internet required!

等待下载。
注意:需要互联网!

Take note that only third party modules are installed via command line unlike built in modules which comes along with the node.js environment when downloaded...

请注意,不同于第三方模块在下载时随Node.js环境一起提供的内置模块,仅通过命令行安装了第三方模块。

Let's look at a basic use of the upper-case module.

让我们看一下大写模块的基本用法。

We'll create an http server that will output hello world in capital letters but written in small letters in the source code.

我们将创建一个http服务器,该服务器将以大写字母输出问候世界,但在源代码中以小写字母书写。

Open a text editor and type the following code and save it with the file name app.js:

打开一个文本编辑器,输入以下代码,并将其保存为文件名app.js

var http = require('http');  // includes the http module
var uc = require('upper-case'); // include the upper-case module
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(uc("hello world!")); // assign the upper-case module
res.end();
}).listen(8080); // port number

Note: The file should be saved in your default Node.js directory.

注意:该文件应保存在默认的Node.js目录中。

Initiate the JavaScript file at the console by typing node app.js

通过键入节点app.js在控制台上启动JavaScript文件

Take Note! : Your command line directory should be same with Node.js module directory.

做记录! :您的命令行目录应与Node.js模块目录相同。

Finally, open your browser and navigate to http://localhost:8080

最后,打开浏览器并导航到http:// localhost:8080

upper-case module in Node.js

Thanks for coding with me. Your comments are most welcome.

感谢您与我一起编码。 非常欢迎您发表评论。

翻译自: https://www.includehelp.com/node-js/upper-case-node-js-module.aspx

node 大写

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377500.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

HDU嵌入式实验课程大作业分析报告

目录作业要求设计原理与思路扩展任务说明课程感受友情链接工程链接作业要求 体能测试记录仪设计 基于课程发放的实验板,设计一个带有计时和数据采集功能的体能测试记录仪。 基本设计内容 功能1:对应1000米体测场景,使用充电宝供电&#x…

html注释引用公共头部_HTML注释和引用

html注释引用公共头部HTML注释 (HTML Comments) To insert a comment in an HTML document, the comment tags are used. The comments are used to provide some information that could be useful for anyone who views the code of the webpage. The comments can be insert…

HDB3码的编码

编码规则 1、源码是1时,暂时不变; 2、连0不超过3个时不变,有4个或以上连0时把每4个0换为取代节,即B00V; 3、确定B是0还是1:第一个B一般取0,若两个取代节之间1的个数为偶,易推得后者…

批量去除文件空格

import osfilepath r"G:\picture" # 文件目录名 allfilepath os.listdir(filepath)for file in allfilepath: # 改目录下的文件名oldpath filepath \\ filenewname file.replace( , ) # 在原先文件名中去除空格,也就是用null替代空格newpath fil…

【DSP复习主要知识点】(大概)

目录第一章1、数字系统对比模拟系统2、冯诺依曼、哈佛架构3、CISC、RISC4、DSP特点5、cpu流水线作用6、DSP芯片优点第二章:DSP芯片结构原理1、ALU(算数逻辑运算单元)2、累加器A和B3、桶形移位器的功能4、乘法/加法单元5、CPU状态与控制寄存器…

Json转二值图像

Json文件通过labelme进行标识 image路径 G:\PyCharm\workspace\unet_42-master\datasets\label_bz\test\image label路径 G:\PyCharm\workspace\unet_42-master\datasets\label_bz\test\label 待转换路径 G:\PyCharm\workspace\unet_42-master\datasets\label_bz\test\mask …

矩形波傅里叶变换对以及三角波傅里叶变换

时域矩形波->频域sinc 时域三角波->频域sinc^2:

INTERNET的完整形式是什么?

互联网:互联网络 (INTERNET: Interconnected Network) INTERNET is an abbreviation of Interconnected Network of all the Web Servers Worldwide. It is also known as the World Wide Web or in simple terms the Web. INTERNET是全球所有Web服务器的互连网络的…

DMA三种方式以及DMA特点

博主联系方式: QQ:1540984562 QQ交流群:892023501 群里会有往届的smarters和电赛选手,群里也会不时分享一些有用的资料,有问题可以在群里多问问。 DMA三种方式:数据块传送方式、周期挪用方式、交替访存方式 数据块传送…

界面边框圆角

界面边框圆角的实现方式同样是在res/drawable中定义一个XML文件&#xff0c;corners.xml的代码如下&#xff1a; 1<?xml version"1.0" encoding"utf-8"?>2<shape xmlns:android"http://schemas.android.com/apk/res/android"> 3 …

CGPA的完整形式是什么?

CGPA&#xff1a;累积平均绩点 (CGPA: Cumulative Grade Point Average) CGPA is an abbreviation of Cumulative Grade Point Average. It is a grading system in education. It is used in measuring the overall academic performance average of a student in schools and…

二、页面布局

一、界面 我做的界面大概思路&#xff1a;点击 上传图片&#xff0c;显示待检验的照片 点击 U-net模型检测 会使用已经训练好的U-net模型进行预测 点击 OpenCV统计 会将预测结果进行轮廓检测&#xff0c;并统计所有轮廓的面积 在 处理结果 这个groupBox中进行显示 大致界面如…

GNU工具以及GCC对C语言程序的处理流程

GCC是一族工具的集合&#xff0c;包含预处理器、编译器、汇编器、链接器。 对于默认的文件名&#xff0c;GCC可以自动选择工具自动完成文件处理过程。 从C语言的源程序道可执行文件&#xff0c;实质上是依靠GCC调用一系列工具完成的。 GCC默认处理的文件 文件类型扩展名文件说…

请不要对我说“你要马上把这个小问题修改好”

“我需要”&#xff0c;“小问题”&#xff0c;“立刻”。你激怒我了。你的每个词都激怒我了。这种情绪很难翻译成英语表达&#xff0c;但在荷兰&#xff0c;有些人就是用这种方式要求你。翻译成英语&#xff0c;这有点像“你要几分钟内把这个东西修改好”。大家都知道的这样的…

c#异常处理_C#中的异常处理

c#异常处理What an exception is? 有什么例外&#xff1f; An exception is a runtime error; that means an abnormal situation which is created at run time and the program doesn’t execute successfully. Due to the exceptions, our program gets crash. 异常是运行…

(转)走进AngularJs(六) 服务

原文地址&#xff1a;http://www.cnblogs.com/lvdabao/p/3464015.html 今天学习了一下ng的service机制&#xff0c;作为ng的基本知识之一&#xff0c;有必要做一个了解&#xff0c;在此做个笔记记录一下。 一、认识服务&#xff08;service&#xff09; 服务这个概念其实并不陌…

Linux驱动程序框架以及概述

目录驱动程序三种基本类型&#xff08;组成&#xff09;设备驱动程序功能驱动程序的内核模块机制&#xff08;开发模式&#xff09;驱动程序框架三个主要部分1、字符设备驱动程序框架2、块设备驱动程序框架2、网络设备驱动程序框架驱动程序三种基本类型&#xff08;组成&#x…

curl 使用整理(转载)

我一向以为&#xff0c;curl只是一个编程用的函数库。 最近才发现&#xff0c;这个命令本身&#xff0c;就是一个无比有用的网站开发工具&#xff0c;请看我整理的它的用法。 curl网站开发指南 阮一峰 整理 curl是一种命令行工具&#xff0c;作用是发出网络请求&#xff0c;然…

Linux内核逻辑结构

linux内核从逻辑上可以分为5个部分&#xff1a; 1、进程调度 进程调度控制进程对CPU的访问。当需要选择下一个进程运行时&#xff0c;由调度程序选择最值得运行的程序。可运行进程实际上是仅等待CPU资源的进程&#xff0c;如果某个进程在等待其他资源&#xff0c;则该进程是不可…

对批量文件重命名

一、 文件夹下存放各种不同名称的同类型文件 F:\test 二、重命名格式从a0开始&#xff0c;数字依次递增&#xff0c;a0,a1,a2,a3… import ospathr"F:\test"#要修改文件的路径 namer"a"#命名从什么开始 num0#默认从0开始&#xff0c;即a0,a1,a2...... …