Simple full code example

A very, very simple example. :slightly_smiling_face:

see
https://hofk.de/main/discourse.threejs/2020/LoadGLTF/LoadGLTF.html
with downloaded model

Updated, see further below.

// konta johanna remix (CC-BY)   people (license)
// https://poly.google.com/view/7PNIMdmMSPD
loader.load( 'girl/google poly.gltf', process );

Model is not centered!

function process( gltf ) {

	const model = gltf.scene;
	
	console.log( model ); // console 

	scene.add( model );		 

	//model.position.set( 5, -0.3, -4 );
	//model.rotation.set( 0, 0.7, 0 );
	
}