
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@planningcenter/cc-url
Advanced tools
Church Center origin generator for JavaScript.
Builds runtime-environment-considered origins and urls in JavaScript for Church Center subdomains.
For those familiar with @planningcenter/url
, it may be worth noting that this generator has no concerns about what application is building the urls.
This package is primarily concerned with building origins and urls in the browser.
It is smart about inferring the Church Center origin from the current window.location.origin
.
If window.location.origin
is unavailable (like in the tests), an origin can be passed explicitly, but you'll most likely only need that for composing urls across subdomains.
// window.location == "https://carlsbad.churchcenter.com/giving"
import { buildSubdomain, buildUrl } from "@planningcenter/cc-url"
let api = buildSubdomain("api")
// => https://api.churchcenter.com
let myGroupsUrl = buildUrl("/groups/profile")
// => https://carlsbad.churchcenter.com/groups/profile
Want to build API urls or app-specific urls? Compose to your heart's content!
// window.location == "http://first.churchcenter.test/giving/profile"
import { buildSubdomain, buildUrl } from "@planningcenter/cc-url"
function bouldGroupsUrl(pathname) {
return buildUrl(`/groups${pathname}`)
}
let myGroupsUrl = buildGroupsUrl("/profile")
// => http://first.churchcenter.test/groups/profile
function buildApiUrl(pathname) {
return buildUrl(pathname, buildSubdomain("api"))
}
function buildPeopleApiUrl(pathname) {
return buildApiUrl(`/people/v2${pathname}`)
}
function buildFormUrl(id) {
return buildPeopleApiUrl(`/forms/${id}`)
}
let formUrl = buildFormUrl(42)
// => http://api.churchcenter.test/people/v2/forms/42
// function build.... you get the idea
Script tag on Rails
<script
type="javascript"
src="https://unpkg.com/@planningcenter/cc-url/dist/url.umd.js"
></script>
<!-- exposed as global `ChurchCenterUrl` -->
Webpacker on Rails
yarn add @planningcenter/cc-url
import { buildSubdomain, buildUrl } from "@planningcenter/cc-url"
FAQs
A dumb url origin generator in JS
The npm package @planningcenter/cc-url receives a total of 1,307 weekly downloads. As such, @planningcenter/cc-url popularity was classified as popular.
We found that @planningcenter/cc-url demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.