
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@startupjs/auth-apple
Advanced tools
@invertase/react-native-apple-authentication: >= 2.1.0
@startupjs/auth: >= 0.33.0
1 - Open project in xCode
2 - Targets -> Signing & Capabilities
3 - Add team
4 - Add Capability - Sign in with Apple
5 - Go to Identifiers. The ID should appear there
6 - Go to Keys
7 - Create a new key. Choose Sign in with Apple. In the tab Edit - select the desired one Primary App ID
8 - After registration, save Key ID and download the p8 certificate
9 - Key ID to throw in config as APPLE_KEY_ID
10 - Go to Services IDs
11 - Register a Service ID, with any ID
12 - Throw this ID in config.json as APPLE_CLIENT_ID
13 - We go into it, put a check mark Sign In with Apple
14 - Opening Configure
15 - We put the desired one Primary App ID
16 - Filling domain and callback urls. Apple does not accept localhost, you can use ngrok for tests, for example:
https://c48c1b8bb802.ngrok.io/auth/apple/callback,
https://c48c1b8bb802.ngrok.io/auth/apple/callback-native
Importing a strategy:
import { Strategy as AppleStrategy } from '@startupjs/auth-apple/server'
Importing a lib for the config:
import conf from 'nconf'
In startupjsServer, in the strategy of the initAuth function, you need to add AppleStrategy, with variables from the config:
initAuth(ee, {
strategies: [
new AppleStrategy({
clientId: conf.get('APPLE_CLIENT_ID'),
teamId: conf.get('APPLE_TEAM_ID'),
keyId: conf.get('APPLE_KEY_ID'),
privateKeyLocation: path.join(process.cwd(), 'путь к файлу p8')
})
]
})
For tests, you can use testBaseUrl
import { AuthButton as AppleAuthButton } from '@startupjs/auth-apple/client'
FAQs
Auth plugin for StartupJS auth module
We found that @startupjs/auth-apple demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.