Make a new group for the built-in native node packages
See original GitHub issueFor example I want to have those imports into a new separated group:
import crypto from 'crypto';
import fs from 'fs';
import path from 'path';
import util from 'util';
Those packages are node built-in.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:13 (7 by maintainers)
Top Results From Across the Web
Writing Native Node.js Modules - RisingStack Engineering
This article explains how native Node.js modules work, and how you can use them to increase the performance of your application.
Read more >How To Use Node.js Modules with npm and package.json
First, set up a project so you can practice managing modules. In your shell, create a new folder called locator : mkdir locator....
Read more >Native Node Modules | Electron
Manually building for a custom build of Electron ... To compile native Node modules against a custom build of Electron that doesn't match...
Read more >Modules: Packages | Node.js v19.3.0 Documentation
Introduction#. A package is a folder tree described by a package.json file. The package consists of the folder containing the package.json file and...
Read more >Creating Node.js modules - npm Docs
To create a package.json file, on the command line, in the root directory of your Node.js module, run npm init : · Provide...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is now possible in v5.0.0 using custom grouping.
For example:
You could also generate this regex if you use a
.js
config. For example:@lydell this is perfect, thank you!