Home  >  Article  >  Web Front-end  >  How to import js files in nodejs

How to import js files in nodejs

WBOY
WBOYOriginal
2023-05-12 09:38:073538browse

How Node.js introduces JS files

Node.js is a JavaScript runtime based on the Chrome V8 engine. It allows developers to write server-side applications using JavaScript. Node.js provides many built-in modules, such as http, fs and other modules, to facilitate running JavaScript code on the server side. In addition, Node.js also allows the introduction of custom JavaScript files through the module system. In this article, we will explore how to import JS files in Node.js.

How to create a JS file

Creating a JS file in Node.js is very simple. Just create a file with a .js extension and write JavaScript code in it. Below is an example of a simple hello.js file.

function sayHello(name) {
  console.log(`Hello ${name}!`);
}

module.exports = sayHello;

This file exports a function called 'sayHello' which takes a name as a parameter and prints a greeting using console.log.

How to introduce JS files in Node.js

Now we know how to create a JS file. So how to introduce it in Node.js? In Node.js, there are two ways to import JS files. The first method is to use Node.js’ built-in module require.

require() method is used to import a module. We can use this method to import a JS file into our code. For example, if we want to use the function in the above hello.js file in another JS file, we can import it like this:

const sayHello = require('./hello');

sayHello('World');

In this example, we use the require method to import the hello.js file . We tell Node.js to look for the hello.js file in the current directory by passing the file's relative path './hello'. We save the imported function in the variable sayHello and pass a "World" string as a parameter when the function is called.

The second method is to use the ES6 import/export syntax. This syntax requires the use of a compiler such as Babel or TypeScript to make it work in a Node.js environment. The following is an example using ES6’s import/export syntax.

// hello.js
export function sayHello(name) {
  console.log(`Hello ${name}!`);
}
// index.js
import { sayHello } from './hello.js';

sayHello('World');

In this example, we use the ES6 export syntax to export a function named 'sayHello'. Then we import the hello.js file using import syntax in our code and save it in the variable sayHello.

Summary

There are two ways to introduce JS files into Node.js, using the built-in module require of Node.js or using the ES6 import/export syntax. Using the require method is the most common approach as it does not require any additional compiler or tools. Using ES6's import/export syntax allows us to use more modern JavaScript syntax in our code. However, this requires using a compiler such as Babel or TypeScript. No matter which method is used, we can easily introduce JS files in Node.js and use the code in them.

The above is the detailed content of How to import js files in nodejs. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:jquery delete cssNext article:jquery delete css