brainwave
v0.0.6
Published
Programmatically update frontmatter without leaving JS
Downloads
8
Maintainers
Readme
brainwave
Walk the files and control the ones with frontmatter in them
Let's say you have a bunch of files with frontmatter
in them. Like MDX or similar.
Let's say you have fields in that frontmatter that you wanna be able to query against, or manipulate, but you don't wanna do it by hand.
Use brainwave
!
Installation
yarn global add brainwave
Disclaimer
brainwave
is a powerful tool which can change tons of files in your codebase. Using brainwave
in a folder without version control is likely a mistake. Protect yourself. Remember to use the --dryRun
flag to see what would have run instead. Use brainwave
at your own risk. Please log any issues on Github.
Usage
cd your-project
brainwave --init
- generate a basicbrainwave.config.js
file- Open
brainwave.config.js
in your favorite editor and make changes relative to your codebase:
module.exports = {
// telepathy specifies function predicates to run against the codebase
telepathy: {
// this will print out all files which have a "review" key in their frontmatter
review: z => z && z.review
},
// control specifies both predicates and mutations, each a function
control: {
edited: [
// *REMEMBER* to use --dryRun and it will instead tell you what _would_ be modified
// this runs always!
() => true,
// it will add / update dateEdited field in the mdx files
x => (
x && x.stats && x.stats.ctime
? { dateEdited: new Date(x.stats.ctime) }
: {}
)
]
}
}
- Once you've made changes, run
brainwave --telepathy
to see only telepathy calls. - Run
brainwave --dryRun
to see what your changes incontrol
will do. - If you're happy with the changes you're about to make (and you're using version control like a sane person), try running
brainwave
with no--dryRun
flag, and it will update all.mdx
and.md
file in the local folder, excludingnode_modules
.
Built by