
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
A fake CouchDB server for testing.
Disclaimer: This is a fake CouchDB server which implements endpoints used in common applications. It does not claim to be use as a regular CouchDB server. It uses some static data as result for some database requests.
npm install -D fakecouch
const supertest = require('supertest');
const FakeCouchServer = require('fakecouch');
const couch = new FakeCouchServer({
port: 5984,
logger: false,
});
const api = supertest('<endpoint of my awesome API server>');
describe('My Awesome API Tests', () => {
beforeAll(() => {
couch.setup();
couch.authenticate();
});
afterAll(() => couch.reset());
it('HEAD /api/awesome/resource', () => {
return api.head('/api/awesome/resource').expect(404)
.then(() => api.put('/api/awesome/resource').expect(201))
.then(() => api.head('/api/awesome/resource').expect(200));
});
});
Enable CORS using options.headers
const FakeCouchServer = require('fakecouch');
const couch = new FakeCouchServer({
port: 5984,
logger: false,
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': 'Origin, X-Requested-With, Content-Type, Accept',
},
});
type Options = {
port?: number;
logger?: boolean;
headers?: Record<string, string>;
};
declare class Server {
readonly serveUrl: string;
readonly serverPort: number;
readonly headers: Record<string, string>;
readonly databases: Record<string, IFakeCouch.Database>;
constructor({ port = 5984, logger = false }: Options);
setup(): void;
reset(): void;
authenticate(): void;
addDatabase(dbname: string): IFakeCouch.Database;
}
declare class Database {
readonly name: string;
readonly docs: Record<string, IFakeCouch.DocumentRef>;
readonly localDocs: Record<string, IFakeCouch.DocumentRef>;
readonly designs: Record<string, IFakeCouch.DocumentRef>;
readonly indexes: IFakeCouch.IndexDefinition[];
readonly security: Record<'admins' | 'members', IFakeCouch.SecurityObject>;
readonly revisionLimit: number;
addDoc(doc: Document, docid?: string): IFakeCouch.DocumentRef;
addDocs(docs: Document[]): void;
addIndex(index: Index): IFakeCouch.IndexDefinition;
deleteIndex(ddoc: string, indexName: string): boolean;
addDesign(ddoc: IFakeCouch.DesignDocument): IFakeCouch.DocumentRef;
hasDesign(ddocid: string): boolean;
deleteDesign(ddocid: string): void;
}
See typings/IFakeCouch.d.ts for the comple API interfaces.
Under the MIT license. See LICENSE file for more details.
Fake CouchDB v1.2.0
This release adds options.headers
to help to add static header response.
FAQs
A fake CouchDB server for testing
The npm package fakecouch receives a total of 0 weekly downloads. As such, fakecouch popularity was classified as not popular.
We found that fakecouch 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.