Skip to content

Instantly share code, notes, and snippets.

@nkt
Last active February 28, 2016 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkt/518e0dc7ddb985ba8f02 to your computer and use it in GitHub Desktop.
Save nkt/518e0dc7ddb985ba8f02 to your computer and use it in GitHub Desktop.
Migrate to ES2015 using regular expressions

Find:

/^module\.exports\s+=\s+(.+?);?$/

Replace:

export default $1;

Find:

/(?:const|let|var)\s+(.+?)\s*=\s*require\((.+)\);?/

Replace:

import $1 from $2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment