canirequire › CommonJS › protractor
Is protractor ESM-only? Can you require() it?
Webdriver E2E test wrapper for Angular.
Last verified Sep 9, 2026 against protractor@7.0.0. JSON
CommonJS CommonJS — require() works on every Node.js version
protractor ships CommonJS only. require("protractor") works everywhere. import "protractor" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.
Deprecated: We have news to share - Protractor is deprecated and will reach end-of-life by Summer 2023. To learn more and find out about other options please refer to this post on the Angular blog. Thank you for using and contributing to Protractor. https://goo.gle/state-of-e2e-in-angular
Does protractor@7.0.0 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("protractor") from a CommonJS file and import "protractor" from an ES module.
| Runtime | require("protractor") | import "protractor" |
|---|---|---|
| Node.js 18 | ✓ works | ✓ works |
| Node.js 20 | ✓ works | ✓ works |
| Node.js 22 | ✓ works | ✓ works |
| Node.js 24 | ✓ works | ✓ works |
| Node.js 26 | ✓ works | ✓ works |
| Bun 1.4 | ✓ works | ✓ works |
How to import protractor
ES modules (import)
import protractor from "protractor";Named imports from a CommonJS package only work when Node.js can statically detect them. If a named import fails, use the default import and destructure.
CommonJS (require)
const protractor = require("protractor");Module format by version
Derived from the type, main and exports fields of every stable release on npm (95 versions; the newest 60 shown).
| Versions | Format | First published |
|---|---|---|
| 0.24.1 – 7.0.0 | CommonJS | Jun 9, 2014 |
Frequently asked
Is protractor ESM-only?
protractor@7.0.0 is a CommonJS package. protractor ships CommonJS only. require("protractor") works everywhere. import "protractor" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.
Can I import protractor with ES module syntax?
Yes. import protractor from "protractor" works in Node.js and Bun because they support importing CommonJS modules. Named imports work only when Node.js can statically detect the exports.
Does protractor work in Bun?
Yes. import "protractor" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does protractor ship TypeScript types?
Yes. protractor bundles its own type declarations; no @types package is needed.
Links
Other commonjs packages
- debug 4.4.3CommonJS
- semver 7.8.5CommonJS
- ms 2.1.3CommonJS
- picomatch 4.0.7CommonJS
- ajv 8.20.0CommonJS
- source-map 0.8.0CommonJS
- react-is 19.2.8CommonJS
- readable-stream 4.7.0CommonJS
Similar popularity
- babel-plugin-lodash 3.3.4CommonJS
- babel-preset-react 6.24.1CommonJS
- stylelint-config-prettier 9.0.5CommonJS
- enzyme-to-json 3.6.2CommonJS
- babel-preset-stage-3 6.24.1CommonJS
- gulp-replace 1.1.4CommonJS
- eslint-config-google 0.14.0CommonJS
- babel-preset-flow 6.23.0CommonJS