move file

This commit is contained in:
Rich Harris
2018-06-28 13:24:06 -04:00
parent fa460a2989
commit 6d86b00c26

16
routes/blog/index.json.js Normal file
View File

@@ -0,0 +1,16 @@
import posts from './_posts.js';
const contents = JSON.stringify(posts.map(post => {
return {
title: post.title,
slug: post.slug
};
}));
export function get(req, res) {
res.writeHead(200, {
'Content-Type': 'application/json'
});
res.end(contents);
}