Contributions are always welcome, no matter how large or small!
We want this community to be friendly and respectful to each other. Please follow it in all your interactions with the project. Before contributing, please read the code of conduct.
The package.json file contains various scripts for common tasks:
Installiation, Build
pnpm run install: setup project by installing dependencies.pnpm run prepack: build package (including docs, expo config plugin)pnpm run build:docs: build documentation at./docs.pnpm run build:expo-config-plugin: build expo config plugin.
Validation
pnpm run lint: lint files with ESLint, ClangFormat, Ktlint, TypeScriptpnpm run t: alias for lintpnpm run format: run formatter with ClangFormat, SwiftFormat for iOS codes and Ktlint for Android codes
Example App Build, Manipluations
pnpm run start: start the Metro server for the example app.pnpm run android: run the example app on Android.pnpm run ios: run the example app on iOS.pnpm run codegen:{android,ios}: generate codegen output for development typing (this should be clean for running example app, prevetning redelcaration compile error)
Util
pnpm run studio: open android studio for example projectpnpm run xcode: open xcode for example project
Codegen
pnpm run codegen: generate codegen spec for all platformpnpm run codegen:android: generate android codegen specpnpm run codegen:ios: generate ios codegen spec
The example app demonstrates usage of the library. You need to run it to test any changes you make.
If you want to use Android Studio or XCode to edit the native code, you can open the example/android or example/ios directories respectively in those editors. To edit the Objective-C or Swift files, open example/ios/example.xcworkspace in XCode and find the source files at Pods > Development Pods > @mj-studio/react-native-naver-map.
To edit the Java or Kotlin files, open example/android in Android studio and find the source files at mj-studio-react-native-naver-map under Android.
You can use various commands from the root directory to work with the project.
To start the packager:
cd example && pnpm run startTo run the example app on Android:
Set your Naver SDK Key at example/nadroid/app/src/main/res/values/secret.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="naver_client_id">{{your_key}</string>
</resources>cd example && pnpm run androidTo run the example app on iOS:
Set your Naver SDK key at example/ios/Secret.xcconfig
NAVER_CLIENT_ID = {{your_key}}
pnpm run pod
cd example && pnpm run iosMake sure your code passes TypeScript and ESLint and clang. Run the following to verify:
pnpm run lintThere is no linter for android native code yet. But please format code for readability.
Use kotlin standard formatting.
Use .clang-format of project root.
Documentation files are located in docs/content/docs/ and use MDX format following Fumadocs conventions.
File Structure:
- Write MDX files in
docs/content/docs/ - For translations, use
.ko.mdxsuffix (e.g.,index.mdx,index.ko.mdx) - Use
meta.jsonto control folder structure and page ordering
Writing Guidelines:
- Include frontmatter:
title,description,icon - Start content with h2 (
##) headings, not h1 (#) - Build with
pnpm run build:docs
meta.json:
meta.json controls the sidebar structure and page ordering in each folder. Learn more
{
"title": "Folder Name",
"pages": ["index", "setup", "---", "advanced"]
}We follow the conventional commits specification for our commit messages:
fix: bug fixes, e.g. fix crash due to deprecated method.feat: new features, e.g. add new method to the module.refactor: code refactor, e.g. migrate from class components to hooks.docs: changes into documentation, e.g. add usage example for the module..test: adding or updating tests, e.g. add integration tests using detox.chore: tooling changes, e.g. change CI config.
Our pre-commit hooks verify that your commit message matches this format when committing.
We use TypeScript for type checking, ESLint with Prettier for linting and formatting the code. Our pre-commit hooks verify that the linter and tests pass when committing.
Working on your first pull request? You can learn how from this free series: How to Contribute to an Open Source Project on GitHub.
When you're sending a pull request:
- Prefer small pull requests focused on one change.
- Verify that linters and tests are passing.
- Review the documentation to make sure it looks good.
- Follow the pull request template when opening a pull request.
- For pull requests that change the API or implementation, discuss with maintainers first by opening an issue.