最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - What does the "!" character do in nodejs module names? - Stack Overflow

programmeradmin0浏览0评论

I've started using the intern library to write functional tests in js, and I realized that I couldn't understand this syntax:

var assert = require('intern/chai!assert');
var registerSuite = require('intern!object');

What is the purpose of the ! character in the argument of the require() method?

I've started using the intern library to write functional tests in js, and I realized that I couldn't understand this syntax:

var assert = require('intern/chai!assert');
var registerSuite = require('intern!object');

What is the purpose of the ! character in the argument of the require() method?

Share Improve this question edited Sep 1, 2016 at 20:44 skypjack 50.6k19 gold badges105 silver badges202 bronze badges asked Jan 21, 2016 at 13:41 gillybgillyb 8,9108 gold badges55 silver badges80 bronze badges 1
  • github./theintern/intern-tutorial – Royi Namir Commented Jan 21, 2016 at 13:45
Add a ment  | 

2 Answers 2

Reset to default 8

Short answer

It identifies a resource that is part of a plugin.
The structure of the identifier is: [plugin]![resource].

Long answer

In the documentation, you can find that:

Intern is built on top of a standard amd loader, which means that its modules are also normally written in the AMD module format.

That's why and how the require function is actually injected, so it's clear that you are not using the require module provided along with Node.JS.

It states also that:

[AMD format] Allows modules and other assets to be asynchronously or conditionally resolved by writing simple loader plugins

If you follow the link provided with the documentation when it cites the loaders, you find that:

Loader plugins extend an AMD implementation by allowing loading of resources that are not traditional JavaScript dependencies.

In particular, you can find that a dependency has the following form:

[Plugin Module ID]![resource ID]

It goes without saying that the default implementation of the loader you get by using intern adheres to the above mentioned standard.

That said, it follows that, if we consider:

intern/chai!assert

You can read it as inter/chai as plugin module and assert as actually required resource.

The purpose of the ! character in the argument of the require() method is to satisfy the requirements of the syntax used to identify a resource that is itself part of a plugin.

I got this answer for you extracted from this similiar question and very well explained by explunit:

The exclamation point syntax is reserved for plugins. Typically there would be something else following the exclamation point which indicates the resource that the plugin would load, e.g. text!myTemplate.html, but in the case of domReady! the plugin exists just as a way to wait until DOM loaded before invoking your callback function, so nothing needs to follow the exclamation point.

发布评论

评论列表(0)

  1. 暂无评论