Generate a simple portfolio website HTML string from structured data.
Usage:
import createPortfolio from '@codedev168/create-portfolio';
const html = createPortfolio({
name: 'Jane Doe',
bio: 'Full-stack developer',
projects: [
{ title: 'App', description: 'A cool app', url: 'https://example.com' }
]
});
// write html to a file or serve itBuild:
npm run build
Test:
npm test