
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
@gautamarora/blog
Advanced tools
This blog application is a mega-app that is built using a micro-app architecture. Each page (post, photo, profile) is a micro-app that uses expressjs, browserify, handlebars & sass. These micro-apps share other micro-apps like header. Each micro-app is published as a npm module at npmjs.com from where it is installed into the mega app.
The modular architecture is inspired from See-Eat-Sleep/AppUp and Condé Nast Traveler.
Clone the blog repo:
git clone git@github.com:gautamarora/blog.git
Install dependencies:
cd blog
npm install
Run the app:
npm start
Now go to localhost:3000 to see the sample blog app
For development, its easiest to softlink all the dependencies to local folders for the microapp dependencies, here is how:
Clone all the microapp dependency repos:
git clone git@github.com:gautamarora/core.git
git clone git@github.com:gautamarora/header.git
git clone git@github.com:gautamarora/homepage.git
git clone git@github.com:gautamarora/post.git
git clone git@github.com:gautamarora/photo.git
git clone git@github.com:gautamarora/profile.git
Install dependencies for all the above repos by running this command in each of them:
npm install
Create softlinks for all the dependencies by running this command in each of them:
npm link
Now go back to the blog repo and softlink it to the locally cloned repos:
npm link core
npm link header
npm link homepage
npm link post
npm link photo
npm link profile
Now you can make edits to any microapp locally, and the changes will be reflected when you run the blog app:
npm start
FAQs
megaapp - blog
The npm package @gautamarora/blog receives a total of 7 weekly downloads. As such, @gautamarora/blog popularity was classified as not popular.
We found that @gautamarora/blog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.