Version: 0.7.1
Last Updated: Unknown
Use this tempalate to generate new lift projects.
| Variable | Data Type | Info |
|---|---|---|
name | string | Name of the blog post |
1---2basedir: content/blog3---4---5date: "<%= name.split('-').filter((_data, index) => index < 3).join("-") %>"6image: https://cdn.dennisokeeffe.com/assets/<%= name %>/main-image.png7title: <%= _.startCase(name.split('-').filter((_data, index) => index >= 3)) %>8description: <%= description %>9tags: "beginner,nodejs,typescript"10icons: "dok,nodejs,ts"11---1213This post will ...1415Source code can be found [here](https://github.com/okeeffed/copy-replace)1617## Prerequisites18191. Basic familiarity with [npm](https://www.npmjs.com/).202. Basic familiarity with [Node.js](https://nodejs.org/en/).2122## Getting started2324We will let `create-next-app` create the project directory `hello-world` for us:2526```s27$ mkdir hello-world28$ cd hello-world29# Create a file to work from30$ touch index.js31# initialise npm project with basics32$ npm init -y33$ npm install TODO34```3536At this stage, our project is now ready to start working with.3738## ...3940...4142## Summary4344Today's post demonstrated how to ...4546## Resources and further reading4748- [npm](https://www.npmjs.com/).49- [Node.js](https://nodejs.org/en/).50- [Source code](https://github.com/okeeffed/copy-replace)5152_Photo credit: [`user`](https://unsplash.com/@user)_