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

javascript - import module just to run it - Stack Overflow

programmeradmin2浏览0评论

I have a JavaScript file that registers validators for a form validation library I'm using. These validators bee accessible through that library, so I don't need to import it anywhere, I just need to ensure it runs once.

  1. How do I import a module in such a way in es6?

  2. What's the best place in a project to do this? I currently have it in my main js file where everything starts up, but that file has nothing to do with forms, or data validation, so it feels somewhat awkwared

I have a JavaScript file that registers validators for a form validation library I'm using. These validators bee accessible through that library, so I don't need to import it anywhere, I just need to ensure it runs once.

  1. How do I import a module in such a way in es6?

  2. What's the best place in a project to do this? I currently have it in my main js file where everything starts up, but that file has nothing to do with forms, or data validation, so it feels somewhat awkwared

Share Improve this question asked Jul 15, 2016 at 14:13 bigblindbigblind 12.9k14 gold badges72 silver badges129 bronze badges 1
  • 2 You can simply import a file that contains a series of procedural functions / instructions which can glue together your validators with validaiton library. Without at least some code, we're doomed to guessing around. – Mjh Commented Jul 15, 2016 at 14:27
Add a ment  | 

2 Answers 2

Reset to default 10

How do I import a module in such a way in es6?

You can use

import 'validators/register';

to import a module for its side effects only.

What's the best place in a project to do this?

The best solution would be not to register validators as a side effect, but rather decorate the validation library with the custom objects. The module structure, i.e. where to import these decorations, then soon bees obvious.

If you need to use a registration approach, just put the import in any of the modules that are using the registered validators, typically alongside the import of the library itself. You can also factor this out in an extra module that bundles the library with the registrations if you need them together in many places.

It depends on the context, are you working on Node.JS? If so, there's a [caching native feature] (https://nodejs/docs/latest/api/modules.html#modules_caching) that allows to cache the JS file the first time is invoked, no matter how many times is written. if not you could create a Singleton using closures. That will make sure it just runs once.

1: es6 way

import lib from './lib';

2: you could leave it on main.js, but if it feels awkward, put it in a separate util JS file and import that one.

发布评论

评论列表(0)

  1. 暂无评论