Added New Custom Number Path #28

Open
sahrohit wants to merge 2 commits from sahrohit/master into master
2 changed files with 28 additions and 0 deletions

View File

@ -57,6 +57,28 @@ app.get('/record/@:name', async (req, res) => {
res.json(data)
})
app.get('/number/@:num', async (req, res) => {
const { num } = req.params
console.log(num)
const { theme = 'moebooru' } = req.query
let length = PLACES
// This helps with GitHub's image cache
Review

I don't think this is needed here as the number will be the same anyway.

I don't think this is needed here as the number will be the same anyway.
res.set({
'content-type': 'image/svg+xml',
'cache-control': 'max-age=0, no-cache, no-store, must-revalidate',
})
length = 10
// Send the generated SVG as the result
const renderSvg = themify.getCountImage({
count: parseInt(num),
theme,
length,
})
res.send(renderSvg)
})
app.get('/heart-beat', (req, res) => {
res.set({
'cache-control': 'max-age=0, no-cache, no-store, must-revalidate'

View File

@ -27,12 +27,18 @@ html
h5 SVG address
code https://count.getloli.com/get/@:name
code https://count.getloli.com/number/@:num
h5 Img tag
code <img src="https://count.getloli.com/get/@:name" alt=":name" />
code <img src="https://count.getloli.com/number/@:num" alt=":name" />
h5 Markdown
code ![:name](https://count.getloli.com/get/@:name)
code ![:name](https://count.getloli.com/number/@:num)
h3 eg:
<img src="https://count.getloli.com/get/@index" alt="Moe Count!" />