Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@coveo/angular
Advanced tools
The @coveo/angular
package contains the necessary components to set up a search page using Coveo Headless and Angular Material with the Angular CLI.
If you want to create a new Coveo Headless-powered search page with the Angular web framework from scratch, it is simpler to use the coveo ui:create:angular
command in the Coveo CLI. The Coveo CLI will handle a lot of complexity for you. Calling the @coveo/angular
package directly from the Angular CLI should rather be done to help you integrate a search page to an already existing Angular project.
To add a Coveo Headless-powered search page using Material Angular to an existing Angular project, execute the following steps:
ng add @coveo/angular --org-id=<org-id> --api-key=<api-key>
, where you replace <org-id>
by the unique identifier of your Coveo organization, and <api-key>
by an API key granting the impersonate privilege in the target organization.server
folder. This is an Express server which generates Coveo search tokens..env.example
file. Create a copy of that file and rename it .env
..env
file, replace all placeholder variables (<...>
) by the proper information for your organization. For more involved configurations, you can modify the request parameters used in the middlewares/searchToken.ts
file.ng serve
.TODO
TODO
To test the schematic locally, install @angular-devkit/schematics-cli
globally and use the schematics
command-line tool. That tool mimics generate
and add
commands of the Angular CLI.
Check the documentation with
schematics --help
First of all, create a new project:
ng new my-test-app --routing --style css
Make sure to link your local schematic to the project you want to use it in.
cd my-test-app
npm link /path/to/coveo-cli/packages/ui/angular
You can also use
npm pack
in your schematics project, thennpm install /path/to/artifact.tar.gz
in your Angular project. This mimicsnpm install
more than npm link.
Run your schematic
schematics @coveo/angular:headless-engine --org-id<org-id> --api-key=<api-key> --dry-run
npm run test
will run the unit tests, using Jasmine as a runner and test framework.
To publish, simply do:
npm run build
npm publish
That's it!
FAQs
Coveo schematic for angular
The npm package @coveo/angular receives a total of 23 weekly downloads. As such, @coveo/angular popularity was classified as not popular.
We found that @coveo/angular demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 15 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.