
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@harperdb/code-guidelines
Advanced tools
Coding Guidelines for Harper repositories. Includes types, linting, and formatting.
This repository contains code guideline tools and configurations for the HarperDB organization.
Currently exports shared configurations for Prettier, ESLint, and TS Node Type Checking. More tools will be added soon.
npm i --save-dev @harperdb/code-guidelines
Add "prettier": "@harperdb/code-guidelines/prettier" to package.json.
Run npx prettier .
We use Prettier for formatting. The default config is exported under the /prettier path (i.e. @harperdb/code-guidelines/prettier).
Review the Sharing Configurations documentation for more information how to use or extend the base config.
We use ESLint to enforce code quality and integrate Prettier formatting. The default config is exported under the /eslint path (i.e. @harperdb/code-guidelines/eslint).
You must create a local ESLint configuration that imports Harper's ESLint configuration, then you can extend or override the base configuration by adding your own rules.
For more detailed information about extending configurations, see the ESLint Configuration Files documentation.
npm i --save-dev @harperdb/code-guidelines eslint prettier
eslint.config.mjs file in your project root:import harperConfig from '@harperdb/code-guidelines/eslint';
import { defineConfig } from 'eslint/config';
export default defineConfig([
...harperConfig,
// Your custom configuration here
{
rules: {
// Override or add custom rules
},
},
]);
npx eslint .
TypeScript configuration files are available under the /tsconfig export path and can be used with the extends property in your own tsconfig.json files.
For example, to use the base Node.js configuration (supporting Node.js v20 or later):
npm i --save-dev typescript @types/node@20 @harperdb/code-guidelines
tsconfig.json file in your project with the following content:{
"extends": "@harperdb/code-guidelines/tsconfig.node.json",
"compilerOptions": {
// Your custom options here
}
}
npx tsc
# or
node src/index.ts
Configurations are based off of the popular tsconfig bases project.
The following list outlines the available configurations:
tsconfig.node.json - Node.js v20 or later with Node.js Type Stripping supportTo add a new TypeScript configuration:
tsconfig. and ending with .json. The name in between should be descriptive of the environment or relevant version (e.g. tsconfig.react.json or tsconfig.node-24.json).exports field in package.json to include the new configuration file using the same name as the file.FAQs
Coding Guidelines for Harper repositories. Includes types, linting, and formatting.
The npm package @harperdb/code-guidelines receives a total of 391 weekly downloads. As such, @harperdb/code-guidelines popularity was classified as not popular.
We found that @harperdb/code-guidelines demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 9 open source maintainers 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.