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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bigbinary/neeto-custom-domains-frontend

v1.1.0

Published

A repo acts as the source of truth for the new nano's structure, configs, data etc.

Downloads

416

Readme

neeto-custom-domains-engine

The neeto-custom-domains-engine manages custom domains across neeto applications.

Contents

  1. Development with Host application
  2. Instructions for publishing

Development with Host application

Engine

The engine provides the backend setup for neetoCustomDomains.

Installation

  1. Add this line to your application's Gemfile:
source "NEETO_GEM_SERVER_URL" do
  # ... existing gems

  gem "neeto-custom-domains-engine"
end
  1. And then execute:
bundle install
  1. Add this line to your application's config/routes.rb file:
mount NeetoCustomDomainsEngine::Engine => "/custom_domains"
  1. Run migrations
rails neeto-custom-domains-engine:install:migrations
rails db:migrate

Usage

The steps below depend on the association that we use. In some cases, we need to attach multiple custom domains to a model, while in other cases, we only need a single custom domain. We have to make necessary configurations depending on this.

Let's say we have a "Site" model, and we want to publish our site on a custom domain.

Configure has_one association

The site only needs to be published in a single custom domain, so we chose has_one association.

  1. Add association
class Site > ApplicationRecord
  has_one :custom_domain, as: :custom_domainable, class_name:   "NeetoCustomDomainsEngine::Domain", dependent: :destroy
end
  1. Add controller

All common controller logic is extracted to the engine. However, we still need to load some records depending on the association that we use.

class Api::V1::Sites::CustomDomainsController < NeetoCustomDomainsEngine::DomainsController
  private

    def load_custom_domainable!
      @custom_domainable = organization.sites.find(params[:site_id])
    end

    def load_custom_domain!
      @custom_domain = @custom_domainable.custom_domain
    end
end
  1. Add routes
include NeetoCustomDomainsEngine::Routes::Draw

scope module: :sites do
  custom_domains_routes(route: :custom_domain)
end
  1. Add front-end component
import { CustomDomain } from "@bigbinary/neeto-molecules/CustomDomain";

For more info related to front-end component: https://github.com/bigbinary/neeto-molecules/blob/main/docs/components.md#customdomain

Configure has_many association

The site needs to be published in multiple custom domains, so we chose has_many association.

  1. Add association
class Site > ApplicationRecord
  has_many :custom_domain, as: :custom_domainable, class_name: "NeetoCustomDomainsEngine::Domain", dependent: :destroy
end
  1. Add controller
class Api::V1::Sites::CustomDomainsController < NeetoCustomDomainsEngine::DomainsController
  private

    def load_custom_domainable!
      @custom_domainable = organization.sites.find(params[:site_id])
    end

    def load_custom_domain!
      @custom_domain = @custom_domainable.custom_domains.find(params[:id])
    end
end
  1. Add routes
include NeetoCustomDomainsEngine::Routes::Draw

scope module: :sites do
  custom_domains_routes(route: :custom_domain)
end
  1. Add front-end component
import { CustomDomainDashBoard } from "@bigbinary/neeto-molecules/CustomDomainDashboard";

For more info related to front-end component: https://github.com/bigbinary/neeto-molecules/blob/main/docs/components.md#customdomainDashboard

Loading site from custom domain

Let's say we have attached the custom domain test.neeto.com to a site. Now, when the user tries to access test.neeto.com in the browser, we should display the corresponding site in the front-end. In order to achieve this, we need to load the site from the custom domain.

custom_domain = NeetoCustomDomainsEngine::Domain.find_by(hostname: params[:custom_domain])
if custom_domain.present?
  @published_site = custom_domain.custom_domainable.published_site
else
  site = Site.find_by! subdomain: params[:subdomain]
  @published_site = site.published_site
end
ENV variables

For the working of this engine we need the following env variables.

LETS_ENCRYPT_PRIVATE_KEY: < For requesting SSL certificates >
LETS_ENCRYPT_DIRECTORY_URL: < For requesting SSL certificates >
LETS_ENCRYPT_VALIDATION_DOMAIN_ACCESS_TOKEN: < For domain authentication>
LETS_ENCRYPT_VALIDATION_DOMAIN_ID: < For domain authentication>
LETS_ENCRYPT_VALIDATION_DOMAIN_NAME: < For domain authentication>
LETS_ENCRYPT_APP_NAME: < For pushing SSL certificate and custom domains >
HEROKU_AUTH_TOKEN: < For pushing SSL certificate and custom domains >

Instructions for Publishing

Consult the building and releasing packages guide for details on how to publish.