npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@builtwithjavascript/server-side-config

v1.1.3

Published

Hook useServerSideConfig to more easily load json files with strongly typed configuration models for use in Nuxt, Next, Node, etc on the server side

Downloads

14

Readme

@builtwithjavascript/server-side-config

npm version

Hook useServerSideConfig to more easily load JSON files with strongly typed configuration models for use in Node.js environments (including frameworks like Nuxt, Next.js, etc.) on the server side.

Codebase

TypeScript

Description

This package provides a single hook:

  • useServerSideConfig

How to use

IMPORTANT: This package should be installed as a local dependency (not globally) as it is designed for project-specific server-side configuration loading.

Installation:

npm i -D @builtwithjavascript/server-side-config

Consumption:

  1. Define your Configuration Model: Create a TypeScript interface that defines the structure of your configuration file. Save it in your models directory or a suitable location (e.g., ./your-path-to-your-iconfig-model.ts):

    TypeScript

    // your-path-to-your-iconfig-model.ts
    interface IConfig {
      name: string,
      marketing: {
        title: string
        hero: string
      },
      meta: {
        title: string
        description: string
      }
    }
  2. Create your JSON Configuration File: Create a JSON file (e.g., app1.json) that adheres to your defined interface. By default, useServerSideConfig will look for config files within a directory you specify. A common convention is config/config-files/.

    Example app1.json:

    JSON

    {
      "name": "for-development",
      "marketing": {
        "title": "My Awesome App",
        "hero": "The best app ever!"
      },
      "meta": {
        "title":  "My App Title",
        "description": "A description of my awesome app."
      }
    }
  3. Integrate and Load the Configuration: In your server-side code (e.g., nuxt.config.ts, API routes, Node.js server scripts), import the useServerSideConfig hook and your IConfig interface.

    Crucially, you must provide the configFilesDirectoryPath argument. This path should be relative to the root of your project (where your package.json resides, and where your Node.js process is typically started, i.e., process.cwd()).

    TypeScript

    import { useServerSideConfig } from '@builtwithjavascript/server-side-config'
    import type { IConfig } from './your-path-to-your-iconfig-model' // Adjust this path to your model
       
    // Example 1: Using a hardcoded app key (for specific scenarios or testing)
    const config = useServerSideConfig<IConfig>('app1', 'config/config-files');
    console.log(config.name); // Output: "for-development"
       
    // Example 2: Using an environment variable for the app key (recommended for dynamic environments)
    // Assuming your config files are in 'config/config-files/' relative to your project root
    const configFilesDir = 'config/config-files';
       
    // In Nuxt, this might be used in nuxt.config.ts for server-side operations
    // or in server/api routes.
    const instance = useServerSideConfig<IConfig>(process.env.SITE_KEY, configFilesDir);
       
    // Note: The `configFilesDir` parameter MUST be a path that `fs.readFileSync` can resolve
    // relative to the current working directory (`process.cwd()`) of your running Node.js process.
    // For most Nuxt/Next.js/Node projects, 'config/config-files' will be correct if your
    // config files are directly within a 'config/config-files' folder at your project root.

Development Dependencies:

  • @types/jest
  • @types/node
  • jsdom
  • prettier
  • ts-node
  • typescript
  • vite
  • vitest