Quickly generate templates based on github repo or gitlab repo.
This project was bootstrapped by create-neon.
$ npm install see-seeker -gAfter install see-seeker, you can explore it at the Node REPL:
$ npm install see-seeker -g
$ see https://github.com/Dlouxgit/see ./seeIn the project directory, you can run:
Pull items from the local list to the dest directory, dest defaults to the current directory.
Set gitlab's private token for internal projects.
Only record the repo url and do not pull it.
Pull the project of repo-url to the directory corresponding to dest, dest is the current directory by default.
The directory structure of this project is:
see/
├── Cargo.toml
├── README.md
├── index.node
├── package.json
├── src/
| └── lib.rs
├── bin/
| └── main.js
└── target/
The Cargo manifest file, which informs the cargo command.
This file.
The Node addon—i.e., a binary Node module—generated by building the project. This is the main module for this package, as dictated by the "main" key in package.json.
Under the hood, a Node addon is a dynamically-linked shared object. The "build" script produces this file by copying it from within the target/ directory, which is where the Rust build produces the shared object.
The npm manifest file, which informs the npm command.
The directory tree containing the Rust source code for the project.
The Rust library's main module.
The cli main file.
Binary artifacts generated by the Rust build.
To learn more about Neon, see the Neon documentation.
To learn more about Rust, see the Rust documentation.
To learn more about Node, see the Node documentation.
ISC