
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
'use strict';
const Creosote = require('creosote');
const fetch = require('node-fetch');
const test = require('tape');
test('parses JSON from a post body', (t) => {
t.plan(1);
let creosote = Creosote({ port: process.env.PORT, expect: 'json' });
creosote.posts('/repos/:name/:tag')
.do(o => o.res.status(200).end())
.reduce(
(acc, c) => {
let name = c.params.name;
let tag = c.params.tag;
let out = Object.assign({}, acc);
out[name] = Object.assign({}, out[name]);
out[name][tag] = c.req.body;
return out;
},
{}
).subscribe((statuses) => {
t.same(
statuses,
{
sam: {
'1.0.0': {
buildStatus: 'failed'
}
},
diane: {
'1.2.1': {
buildStatus: 'succeeded'
}
}
},
'json was parsed'
);
});
fetch(`http://localhost:${port}/repos/sam/1.0.0`, {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
buildStatus: 'failed'
})
})
.then(() => fetch(`http://localhost:${port}/repos/diane/1.2.1`, {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
buildStatus: 'succeeded'
})
}))
.then(() => creosote.unmount())
.catch(t.fail);
});
test('parses form data from a post body', (t) => {
t.plan(1);
let creosote = Creosote({ port: process.env.PORT, expect: 'urlencoded' });
creosote.posts('/repos/:name/:tag')
.do(o => o.res.status(200).end())
.reduce(
(acc, c) => {
let name = c.params.name;
let tag = c.params.tag;
let out = Object.assign({}, acc);
out[name] = Object.assign({}, out[name]);
out[name][tag] = c.req.body;
return out;
},
{}
).subscribe((statuses) => {
t.same(
statuses,
{
sam: {
'1.0.0': {
buildStatus: 'red',
commit: '12345'
},
'1.2.1': {
buildStatus: 'green',
commit: '67890'
}
}
},
'form data was parsed'
);
});
fetch(`http://localhost:${port}/repos/sam/1.0.0`, {
method: 'post',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: 'buildStatus=red&commit=12345'
})
.then(() => fetch(`http://localhost:${port}/repos/sam/1.2.1`, {
method: 'post',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: 'buildStatus=green&commit=67890'
}))
.then(() => creosote.unmount())
.catch(t.fail);
});
FAQs
A cycle.js driver for a routed HTTP server with middleware
The npm package creosote receives a total of 1 weekly downloads. As such, creosote popularity was classified as not popular.
We found that creosote 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.