Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@mind-map/ct-router
Advanced tools
클럽 투엔티의 라우팅 서비스 레포
yarn add @mind-map/ct-router
import { RouterService } from '@mind-map/ct-router';
const url = RouterService.createUrl('PostDetailScreen', { postId: 10 });
// https://app.clubtwenty.co.kr/PostDetailScreen?postId=123
url 은
등등 어디에서든 똑같은 인터페이스로 활용 될 수 있습니다.
Basic
import { RouterService } from '@mind-map/ct-router';
const args = RouterService.parseUrl(
'https://app.clubtwenty.co.kr/PostDetailScreen?postId=123',
);
// ['PostDetailScreen', { postId: 123 }]
navigation.navigate(...args);
Nested Screen
import { RouterService } from '@mind-map/ct-router';
const args = RouterService.parseUrl(
'https://app.clubtwenty.co.kr/BottomTabNavigator?screen=ConnectionTab¶ms%5BinitialTab%5D=MyUniv',
);
// ['BottomTabNavigator', { screen: 'ConnectionTab', params: { initialTab: 'ClubTwenty' } }];
navigation.navigate(...args);
External Url
import { RouterService } from '@mind-map/ct-router';
const args = RouterService.parseUrl('https://naver.com');
// ['WebviewScreen', { uri: 'https://naver.com' }];
navigation.navigate(...args);
git push origin main
yarn patch
External Link or App 은 어떻게 라우팅 시키나요?
const url = 'https://naver.com';
기본적으로 외부 링크면 앱이나 사파리로 웹이 열립니다
웹뷰는 어떻게 여나요?
import { RouterService } from '@mind-map/ct-router';
const url = RouterService.createUrl('WebviewScreen', {
uri: 'https://naver.com',
title: '네이버',
});
createUrl
로 웹뷰 스크린으로 보내면 앱 내에서 웹뷰 페이지로 열립니다.
FAQs
Routing service for mind-map club-twenty app
We found that @mind-map/ct-router demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.