
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
@dracul/customize-backend
Advanced tools
The Customizable Module allows you in a simple and easy way to personalize your page.

npm i @dracul/customize-backend
Simply merge the Resolvers & Types .
import {types as customTypes,resolvers as customResolvers} from '@dracul/customize-backend'
You simply have to merge the ** Configurations and Permissions ** at the beginning of the project..
import {initCustomization, initPermissionsCustomization} from '@dracul/customize-backend'
All the rest of the functionality is done through the frontend.
In your environment variables file (Example: .env), you must indicate the maximum size of the logo image. If the environment variable is not indicated, the default value is 2MB.
# Max logo file size in bytes. Ex: 10000000 Bytes == 1 MegaByte
LOGO_MAX_SIZE = 20000000
Get the logo, colors and language.
customization: Customization
Create customizable settings.
customizationCreate (input: CustomizationInput): Customization
Update customizable settings.
customizationUpdate(id: ID!, input: CustomizationInput): Customization
Updates the selected color.
colorsUpdate(input: ColorInput): Colors
Update the selected logo
logoUpdate(input: LogoInput): Logo
Upload the selected logo
logoUpload(file: Upload!): LogoFile!
Update the selected language
langUpdate(input: LangInput): Lang
Those fields that contain !, are required.
type Customization{
colors: Colors!
logo: Logo!
language: String!
}
type Colors{
primary: String!
onPrimary: String!
secondary: String!
onSecondary: String!
}
type Logo{
mode: String!
title: String
filename: String
url: String
}
type Lang {
language: String!
}
input CustomizationInput{
primary: String!
onPrimary: String!
secondary: String!
onSecondary: String!
logo: String!
language: String!
}
input ColorInput{
primary: String!
onPrimary: String!
secondary: String!
onSecondary: String!
}
input LogoInput{
mode: String!
title: String
}
type LogoFile {
filename: String!
mimetype: String!
encoding: String!
url: String!
}
input LangInput{
language: String!
}
It is recommended to use Scaffold, where you already have all the modules implemented to be able to use it as a project base. https://github.com/draculjs/scaffold
FAQs
node, express, graphql, custom color, theme, logo and i18n
The npm package @dracul/customize-backend receives a total of 2 weekly downloads. As such, @dracul/customize-backend popularity was classified as not popular.
We found that @dracul/customize-backend demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.